Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How to authenticate users using web.config ?



How to authenticate users using web.config ?..

Answer / alb.shah

if we are using form based authentication at that time in
the web.config
we can set the autentication mode to "form"

then we can specify the user name and password which we are
going to access.
if any one can access that application then you can specify
<allow users="*">
inside the authentication tags

<authentication mode="Forms">
<forms name="appNameAuth" path="/"
loginUrl="login.aspx" protection="All" timeout="30">
<credentials passwordFormat="Clear">
<user name="jeff" password="test" />
<user name="mike" password="test" />
</credentials>
</forms>
</authentication>
<authorization>
<deny users="?" />
</authorization>

Is This Answer Correct ?    6 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

What is the difference between file-based dependency and key-based dependency?

0 Answers  


How to set/get parent page values in child page in asp.net

3 Answers   Wipro,


when we write the html code with runat = server it works like a server control than why we use the server control?

1 Answers  


What is the postback property in asp.net?

0 Answers  


What parameters can you pass in the url of the api?

0 Answers  


How do you sign out from forms authentication?

0 Answers   MCN Solutions,


What are the main components of the ADO object model? How are they used?

2 Answers   HCL, Syntax Softtech,


What is the use of web.config file?

0 Answers  


How many types of page.

5 Answers   TCS, Verinon Technology Solutions,


Which property is used to identify the Page is Post Back in ASP.NET?

0 Answers   Sans Pareil IT Services,


About CLR, reflection and assemblies?

0 Answers   Microsoft,


What is difference between web config and global asax?

0 Answers  


Categories