Hi
In my Web Application, Depending on Query string value(userId) I am displaying the Details of a User. So If I change the query string value in URL which automatically displaying the results. Like In this URL ForumID=25 to 26, 27, 28. http://forums.asp.net/AddPost.aspx?ForumID=25
I am using Form Authentication and I have tried by adding the code enableCrossAppRedirects="false" but It' s repeating Same.
<
authentication mode="Forms"><forms name="security" loginUrl="Login.aspx" defaultUrl="Home.aspx" protection="All"
enableCrossAppRedirects="false" />
</
authentication><authorization>
<
deny users="?"/>
</authorization>
Depending upon Logged user, How could I give security to this page. I mean he changes, the page has to redirect Home page or LogIn page.
Thanks in Advance for Sharing your knowledge and helping me
Srik