Asp.Net MVC Tabs x Asp.Net WebForms Ajax Toolkit

1

Does anyone know of any technique for creating and manipulating server-side tabs using AJAX with Aps .Net MVC strong>? I look for something very similar to the Asp.NET WebForms tabs tabs that manipulate the tabs in code-behind and their data when saving information is via AJAX .

I'm looking for this so I will not be manipulating the Javascript tabs for security anyway.

    
asked by anonymous 17.10.2014 / 19:26

1 answer

1

First, in the MVC there is Code Behind .

Secondly, the manipulation of tabs, between dead and injured, is an abstraction of a JS code applied to events within an HTML in a controlled way.

Thirdly, it is not unsafe to manipulate JS in ASP.NET MVC because it is designed for this: so you can put JS at ease in your application without necessarily compromising security.

The way to communicate with Controller using AJAX events is implementing Actions and calling those Actions with components that implements this, such as jQuery, for example. The idea of Microsoft doing this is to approach the new standard used by new Frameworks such as Ruby on Rails, Django and Node.js, which are based only on routes to find and / or process information.

There are a number of good components using JS and CSS that implement this, even better than the AJAX Control Toolkit, such as Bootstrap and the Foundation .

    
17.10.2014 / 21:20