1
vote
How to return a View in MVC with URL like this http://localhost/admin#sayhi
the '#' character is used for page internal bookmark links and should not be used for server side logic. so linking to a page with your #sayhi url, the browser will go to that page and scroll down …
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
MVC JQuery: Retreving values from HTML controls
In order to reference the textbox the way you propose you will need to give the textbox a custom id like this, supposing you're iterating over a collection of users:
<%foreach(va …
