Archive for the ‘Asp.net MVC’ Category

ASP.NET MVC + AD + Windows Authentication: How to Logout

Friday, March 19th, 2010

In ASP.NET MVC applications using Windows Authentication against a domain, we have two possible ways to login: 1) If the user is on a PC added to the domain,  login to the application is not needed becasue it is done automatically with the user's credentials 2) If the user wants to use ...

Coolest Menu and Navigation Jquery Plugins

Tuesday, August 25th, 2009

Here are the 11 most extraordinary menu and navigation jquery plugins i could find. Hope you like them, i know i do. jQuery Context Menu Plugin Demo Visit LavaLamp Navigation Demo Visit jQuery iPod-style Drilldown Menu Demo Visit jdMenu Hierarchical Menu Plugin for jQuery Demo Visit Superfish Demo Visit Accordion Update: The Accordion plugin was embedded as widget into the last release ...

jqGrid + Linq + Asp.Net MVC example

Saturday, August 15th, 2009

For those who want get working these tools/frameworks and achieve a grid like this: Okey, if you like that, this is the stuff used to get it work: System.Linq.Dynamic. More... jqGrid. More... and for more Online Demos go here... Asp.Net MVC. More... Download the code example here. The application was based on the well known example ...

Asp.net MVC: Testing a custom Authorize filters

Saturday, May 23rd, 2009

Asp.net MVC let you intercept the actions via a feature they call: Filters. Filters are just attributes that you decorate into actions and them allow to you make an stop before or after the action-methods are executed (also are filters to intercept code before/after the result is executed, errors are ...