I new to asp.net mvc technology.
Here is my Controller:
public ActionResult SessionData()
{
return View();
}
When button pressed on the view I need to implement ajax call and pass two strings to the controller above.
My question is how make ajax calls in asp.net mvc?Can I use HTML helper to generate ajax function?