What is Form authentication?
8 August 2009
353 views
No Comment
To allow only the valid users to access the application wer can use the FORM AUTHENTICATION.
this is one of the method for the authentication you can also used the session based authentication for this.
In form authentication what all forms are allowed to view are kept in for the authenticated user
we have to use the web config for this
<authentication mode=”Forms”>
<forms name=”.ASPXFORMSDEMO” loginUrl=”logon.aspx”
protection=”All” path=”/” timeout=”30″ />
</authentication>
<authorization>
<deny users =”?” />
<allow users = “*” />
</authorization>
Popularity: unranked [?]












Leave your response!
You must be logged in to post a comment.