Click here to Skip to main content
15,887,854 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to hit client url from our web application??and passing the values as querystring
Posted
Comments
OriginalGriff 5-Mar-12 4:01am    
This is not a good question - we cannot work out from that little what you are trying to do.
Remember that we can't see your screen, access your HDD, or read your mind.
Use the "Improve question" widget to edit your question and provide better information.
sofia3 6-Mar-12 3:54am    
i got the answer then y should i improve my question
OriginalGriff 6-Mar-12 4:08am    
Because the easier you make it for us to answer, the more likely you are to get a helpful response. And the quicker as well.

1 solution

You can write using the below ASP code:

C#
String InputParam = "aaa";
WebRequest req = HttpWebRequest.Create("http://someurl.com?param1="+InputParam);
WebResponse webResponse = req.GetResponse();
 
Share this answer
 
Comments
sofia3 6-Mar-12 3:55am    
thank u:)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900