I have the following method in a controller in an MVC website:
[WebGet]
public void SaveInfo()
{
string make = Request.QueryString["Make"];
string model = Request.QueryString["Model"];
// Do stuff....
}
It works fine when I type the URL in the address bar, but what I need to do is call this from a Windows client. How do I do this in C#?
Thanks!