| Next Tip?
Home » Asp.Net

What is Form authentication?

8 August 2009 353 views No Comment
1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 2.00 out of 5)
Loading ... Loading ...

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 [?]

Related interview questions

Leave your response!

You must be logged in to post a comment.