ajax - ASP.NET MVC jQuery mobile like pages mechanism -


to give more appish experience asp.net mvc application, make links other pages (actions in mvc) loaded using ajax (displaying loading sign while request being processed). have been quite successful doing jquery mobile project doing prefer not use it. in part because loading jquery mobile css previous of site disrupted.

is there similar page mechanism in asp.net? better if features such transitions , pre-rendering of pages available too, jquery mobile does.

an example of try achieve

i have controller this:

public actionresult list() {     return view(); }  public actionresult dashboard() {     return view(); } 

then on dashboard view link:

<a href="@url.action("taskpage", "list")">list</a> 

clicking link request list page server , start slide effect transition 1 page other.

thanks ideas , knowledge on that!


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -