How do I retrieve the HTTP Status code (ie 202, 404, etc) below? I am
currently receiving the response text but unable to access the response
status code.


string strNewValue;

string strResponse;

// Create the request obj

HttpWebRequest req = (HttpWebRequest ) WebRequest.Crea te(txtURL.Text) ;

// Set values for the request back

req.Method = "POST";...