what is impersonation in ASP.NET?

Answer Posted / prince

you can enable the impersonation by adding below entry in
your application config file.

<identity impersonate="true"
userName="domain\user"
password="password" />

Is This Answer Correct ?    17 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How many web config files can be created for an application?

535


Why is this service branded with windows livetm?

693


9. Why should we hire you over the others waiting to be interviewed?

2257


Is session stored in browser?

621


What are sessions used for?

646






Explain asp.net application life cycle?

636


Where is asp.net session stored?

564


A web service can only be written in .net? State whether true or false.

624


What can we do with asp.net?

584


Describe the master page.

650


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 = "" & TxtEmpId.Text & "" & _ "" & TxtName.Text & "" & _ "" & TxtSalary.Text & "" myrow_element.InnerXml = str emp_xml_doc.DocumentElement.AppendChild(myrow_element) emp_xml_doc.Save(Server.MapPath("emp.xml")) Response.Write("Record Saved") Dim ds As New DataSet ds.ReadXml(Server.MapPath("emp.xml")) GridView1.DataSource = ds GridView1.DataBind() Else Response.Write("File does not exist.") End If Catch ex As Exception Response.Write(ex.ToString) End Try *********************** this is the xml file 100 xxx 2000 yyy dddd 77777 rrrr rrrr 6666 qaqa sini 50000 errrrrrrrr rrrrrrrrr 677777 rrr rrr 33

1818


Can you nest updatepanel within each other?

644


What can you do with asp.net?

598


Which two new properties are added in asp.net 4.0 page class?

616


How do you remove duplicates without using remove duplicate stage?

698