What are the types of authentications in ASP.NET?
Answer Posted / shibham
In ASP.Net,there are mainly three types of Authentication-:
1)Forms Authentication
2)Passport Authentication
3)Windows Authentication
To set this Authentication Mode,we write the code in
Web.Config file like-:
<Authentication Mode="Forms/Passport/Windows"/>
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is diff. Between abstract class and an interface?
Explain the difference between value type and reference type?
What are cao and sao.
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
What is cross page posting? How is it done?
Which is an advantage of application service providers?
How to you can limit Access to Web API to Specific HTTP Verb?
What r the asp.net list controls and diff. Between them?
Explain how can we inherit a static variable?
When we use cookie less session? Explain its working?
What is inproc mode in session?
Explain the difference between web user control and web custom control?
Can you explain autopostback?
How can we inherit a static member?
What is considered a service provider?