Explain weg config settings for exception managment in asp.net?
Answer / 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 |
Explain clr, cts and cls?
i have 2 functions, int add(int a,int b); double add(int a,int b); does this code implement overloading? if not what will be the error?
what is the difference between class and structures?
How server form post-back works?
Major role of CLR for CAS
What is a .net class?
Explain me why do we use msmq?
What is the use of edititem template ingridview?
1 Answers C Squared Systems, Microsoft,
Do you know what is garbage collector?
How to get the hostname or IP address of the server?
What is the advantage of packaging over xcopy in .net?
Tell us what is the difference between struct and class?