Click here to Skip to main content
15,891,409 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have Created application which will run online.
I have created Login Form using Login Control Which redirect to page according to username.
It all works Fine in Firefox and google chrome but in IE and Safari Login page does not redirect. It Clears the field only after Postback.

Wht can be problem...??
plz help

I noticed that when I write
XML
<authorization >
      <deny users="?" />
      <allow users="admin"/>

             </authorization>

It doesnt work in IE but works great in FF and chrome
but
when I remove
deny users="?" />
then login works fine in IE also
but i knw this is not good solution.

is there any javascript for this or any solution...................???????????
Posted
Updated 23-May-12 22:01pm
v2

1 solution

Could be because of the order we are specifying it. Try this

XML
<authorization>
      <allow users="admin" />
      <deny users="?" />     
 
</authorization>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900