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
Define viewstate in .net?
Mention few asp.net validators.
What is the displayafter property in updateprogress control?
What is server side session?
What is authentication in asp.net?
What's the ASP.Net Application life cycle?
How Can assign alias name for ASP.NET Web API Action?
Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?
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 difference between view state and session state?
What are navigation controls? How many navigation controls are there in ASP.NET 4.0?
Is it right that ASP.NET Web API has replaced WCF?
What's the use of formatters in .net?
What are directives in asp.net? List down all the important directives.
How do http sessions work?