If there are two web.config files in a application which
config files will get priority?

Answer Posted / rajesh

The web.config file which automatically created when we
start the application will get priority.

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Define viewstate in .net?

615


Mention few asp.net validators.

653


What is the displayafter property in updateprogress control?

607


What is server side session?

605


What is authentication in asp.net?

672






What's the ASP.Net Application life cycle?

640


How Can assign alias name for ASP.NET Web API Action?

1040


Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?

633


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


What is difference between view state and session state?

569


What are navigation controls? How many navigation controls are there in ASP.NET 4.0?

624


Is it right that ASP.NET Web API has replaced WCF?

598


What's the use of formatters in .net?

645


What are directives in asp.net? List down all the important directives.

582


How do http sessions work?

583