Skip to content

Instantly share code, notes, and snippets.

@tamizhvendan
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save tamizhvendan/c087dba84453acbd23b1 to your computer and use it in GitHub Desktop.

Select an option

Save tamizhvendan/c087dba84453acbd23b1 to your computer and use it in GitHub Desktop.
ASP.NET MVC 3 Ajax - Part I
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
}
public string GreetMe()
{
return "Hello ASP.NET MVC3 Ajax!!";
}
<script src="@Url.Content("~/Scripts/jquery-1.5.1.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.js")" type="text/javascript"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment