Tips & Tricks on ASP.NET MVC, Ajax, jQuery, Entity Framework

Entries for the ‘ASP.NET MVC’ Category

Pluggable ASP.NET MVC application project structure

Developing loosely coupled modular programs is a good idea because it eliminates the risk of recompilation. This way of development strategy lets you to create modules and deploy it without recompiling the entire project. You will have a main project and multiple modules on top of that. something similar to wordpress core and wordpress plugins does. Here i am [...]

Rendering views from custom folders in ASP.NET MVC

ASP.NET MVC works with the concept of Convention over Configuration. that means, the programmer do not need to explicitly do many things and MVC will take care of those if he follows the conventions. One good example is, To return a view, you simply write one line Return View() and it will return the view [...]

Radio button list in ASP.NET MVC

When developing web applications , you may need to show radio button list in ASP.NET MVC  so that users can make a selection from the options(radio buttons) and submit the form.  We can do this easily with the help of MVC Model binding. Let’s create a quiz page where we are going to show some questions [...]

ASP.NET MVC3 Tree View with jsTree

In ASP.NET MVC, There is no server controls like what we have in Web forms to render TreeView/ Menu, We need to write our own markup to do so. Even in all those webforms controls, it is generating some HTML which renders a tree or a menu. Here we are going to create an ASP.NET MVC3 Tree [...]