string strUrl = webBrowserIbet.Url.ToString(); // www.abc.com/main.aspx
strUrl = strUrl.Replace("main.aspx", "GetPrice.aspx?hidPID=123&hidC=5");
string strContent = "";
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(strUrl);
myRequest.Method = "GET";
myRequest.ContentType = "text/html; charset=utf-8";
myRequest.Referer = webBrowserIbet.Url.ToString();
myRequest.CookieContainer = new CookieContainer();
Uri uri = new Uri(strUrl);
myRequest.CookieContainer.SetCookies(uri, webBrowserIbet.Document.Cookie);
HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();
using (StreamReader sr = new StreamReader(myResponse.GetResponseStream()))
{
strContent = sr.ReadToEnd();
sr.Close();
}
myResponse.Close();
But result is empty not