Explain weg config settings for exception managment in asp.net?
Answer Posted / vijay
You should configure exception management settings within
your application's Web.config file. The following is an
example of the exception settings in a Web.config file.
< customErrors defaultredirect="http://hostname/error.aspx"
mode="On"/>
< error statuscode="500" redirect="/errorpages/
servererror.aspx" />
< error statuscode="404" redirect="/errorpages/
filenotfound.htm" />
< /customErrors>
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is the concept of inheritance in .net?
How do I use the thread pool?
Write the .net syntax for 'for loop'?
How to use datagrid value in select statements where condition ,if cell is hyperlink bounded column?
What data providers available in .net to connect to database?
Explain the process of serialization in .NET?
How to Create and Consume a Web Service?
Explain how garbage collection works?
What is value type and refernce type in .net?
What is the difference between response.write & response.output.write?
What is the difference between reference type and value type?
Explain me what are the deferred execution and the immediate execution in linq?
Explain what is the reason of occurring overflow-underflow arithmetic exception error, it shows error message when we run our program by adding control?
When we use windows api in .net is it managed or unmanaged code?
What is the intermediate language between asp and asp.net1.0?