In asp.net c# by using HttpWebRequest we create new webrequest, and now to send parameters we use query string request.
This is how we send web requests with the parameter in asp.net c#.
The Below written code will generate web request and send with the parameter in asp.net C#.
Stream objStream;
StreamReader objSR;
System.Text.Encoding encode = System.Text.Encoding.GetEncoding("utf-8");
string str = "http://domaninname.com/YourPage.aspx?name=" + "abc";
HttpWebRequest wrquest = (HttpWebRequest)WebRequest.Create(str);
HttpWebResponse getresponse = null;
getresponse = (HttpWebResponse)wrquest.GetResponse();
objStream = getresponse.GetResponseStream();
objSR = new StreamReader(objStream, encode, true);
string strResponse = objSR.ReadToEnd();
Response.Write(strResponse);
Hope you enjoy reading this article.