How to get status code of a POST with Asp.Net HttpWebRequest

DaveG

New Member
I'm trying to ping Google when my web site's sitemap is updated but I need to know which status code does Google or any other service returns. My code is below:\[code\]HttpWebRequest rqst = (HttpWebRequest)WebRequest.Create("http://search.yahooapis.com/ping?sitemap=http%3a%2f%2fhasangursoy.com.tr%2fsitemap.xml");rqst.Method = "POST";rqst.ContentType = "text/xml";rqst.ContentLength = 0;rqst.Timeout = 3000;rqst.GetResponse();\[/code\]
 
Back
Top