1
vote
jQuery vs MicrosoftAjax in ASP.NET MVC
I have tried to use both more or less side by side.
The builtin ajax helpers works fine.
But jquery has a smaller footprint and is more transparent in use.
And when using th …
10
votes
jQuery Forms Authentication with ASP.NET MVC
Yes, it's possible.
Just submit the login-form using the method descri …
0
votes
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 …
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 …
1
vote
using $.get to get page content and render it into div tag
use the load() function instead
$("#RecentstoryDiv").load('/Views/Templates/_Temp1.ascx');
See the documentation here: …
