I want to basically run an url which i would be generating behind the scenes without actually displaying it in browser to user…i guess i could use HTTPWebRequest or maybe something similiar to curl?…but i need to really just basically visit/run the generated url? how can i do that ?
Share
Use the WebRequest class and its friends.
Other more modern options are the WebClient class which can be simpler to use in some cases, and the HttpClient class which gives you very detailed control over the requests and responses.