In ASP.NET you can set the Response.StatusCode to for example 404. Should the status line / description always be set? (to in this case "404 Page Not Found")

How do you get the description if you only have the code (404)? Is this somewhere in the framework or do you manually have to hardcode the descriptions?

link|improve this question
feedback

3 Answers

up vote 5 down vote accepted

You can use the static method HttpWorkerRequest.GetStatusDescription for this.

link|improve this answer
feedback

If you need it at the same time you're pulling Response.StatusCode, you can get the description from Response.StatusDescription.

link|improve this answer
feedback

The status description can be retrieved with some crazy type casting. Here is the code snipped which retrieves the custom exception message (this is client side code only)

try
{
    string exText = ((HttpWebResponse)w.Response).StatusDescription);
}
catch (WebException w)
{    
}
link|improve this answer
This can't be a client-side code because it's C#, then server-side only. – abatishchev Mar 9 '11 at 15:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.