Send webrequest with parameter in asp.net c#

/ / 0 Comments
C# webrequest with parameters: Here in this article will see how to pass a parameter with webrequest in asp.net c#, i.e making web request with some parameters.

In asp.net c# by using HttpWebRequest we create a 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 a web request and send it 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);

Thank you for reading, pls keep visiting this blog and share this in your network. Also, I would love to hear your opinions down in the comments.

PS: If you found this content valuable and want to thank me? 👳 Buy Me a Coffee

Subscribe to our newsletter

Get the latest and greatest from Codepedia delivered straight to your inbox.


Post Comment

Your email address will not be published. Required fields are marked *

0 Comments