Search Results

1
vote
3answers
199 views

How do I inspect the Asp.Net request pipeline?

When I measure request times on "the inside" of an Asp.Net application and compare it to timings on "the outside" of the app, I get different values -- 1000-5000ms strange overheads from time to ti …
8
votes

ASP.NET MVC - Current Action

In the RC you can also extract route data like the action method name like this ViewContext.Controller.ValueProvider["action"].RawValue ViewContext.Controller.ValueProvider["control …
1
vote

jquery getJson not passing any values to controller

You will have to fix your route and replace {id} with {search} in order to get it to bind to the correct parameter - try something like this: routes.MapRoute("search", "Home/Results …