Implementing Google's hashbang/Ajax crawl with ASP.NET MVC? Implementing Google's hashbang/Ajax crawl with ASP.NET MVC? ajax ajax

Implementing Google's hashbang/Ajax crawl with ASP.NET MVC?


You write use a custom model binder which will take the _escaped_fragment_ query string parameter and return some strongly typed model:

public ActionResult Index(MyModel model){    // Directly use model.Id, model.Key1, model.Key2, ...    return View();}