1
Answer

How to Restrict URL Encryption for particular aspx page?

Raja

Raja

8y
258
1

I want to restrict url encryption for particular page how to do it.

Url Encrypt code

<httpModules>
<add type="QueryStringModule" name="QueryStringModule"/>
</httpModules>

Above code and .cs class file is used for url encryption.

now i want restrict encryption for particular page for some requirements how to do

What i have tried

i used below code for restrict encryption

<%@Page ViewStateEncryptionMode=”Never”>

But this is not worked.

 
Answers (1)
0
Ravi Patel

Ravi Patel

NA 7.8k 532.4k 9y
Hi ,
 
check this
 
for 3-Tier architecture
 
http://www.dotnetfunda.com/articles/show/71/3-tier-architecture-in-aspnet-with-csharp 
Accepted