How do you handle unhandled exceptions in ASP.NET?.
Answer Posted / madhu
By giving
Try
{
any thing u want to give without exception
}
catch
{
here exception takes
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the different types of sessions in asp.net? Name them?
What is a session http?
What is variable and constant in .net programming language?
Explain the differences between clr & cts?
Can we add code files of different languages in app_code folder?
Name the two properties are on every validation control?
Explain the use of resource manager class in .net.
3. What goals do you have in your career?
Where sessions are stored?
What is globalization and localization in asp net?
What are validators and list some validators of asp.net?
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 are directives in asp.net? List down all the important directives.
What is the difference between client-side and server-side validations in webpages?
Can you explain how ASP.NET application life cycle and page life cycle events fire?