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

Entries for the ‘ASP.NET’ 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 [...]

WebImage.Resize method – How to Remove the Left and Top border from the image

WebImage is a class in System.Web.Helpers  namespace ( in System.Web.Helpers dll) which helps us to do some useful things with an image in a webpage like cropping, resizing,flipping ( vertical & horizontal), rotating etc… It is a very useful class if you are working with some code which returns an image  according to your needs [...]

How to get Add View/ Add Controller menus in Solution explorer when converting existing ASP.NET web for project to MVC

So you heard about (that wonderful and addictive) ASP.MET MVC and started thinking to jump into that by converting your existing ASP.NET web application to ASP.NET MVC ? There are plenty of tutorials available online to help you in that .Scott gives step by step instruction in this tutirial. I also followed this link to [...]