How do I design my URL to match my function like this:
public ActionResult GetStuff(string name, string address, double latitude, double longitude)
{ }
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Add a route with a signature that has all those parameters in it.
If you just intend to POST data to that action method, then the parameter names in your method signature can just match named input fields on your form instead.