I want to send an information along with the url like a query string to the web site. This is exactly I call
Process.Start("http://domain.com?value=anything");
but I don't want to open browser because don't want to interrupt the user who is using the software.
I have googled for this but I found some HttpRequest
code but the problem is this those program is not appending the query string. They are just returning me the html text of the web page.
I want to retrieve that information to store in database. Please guide me in this case.