Monday, May 24, 2010

Just learnt to set folder permissions in iis...

IIS Folder permission:

Tool->Options->View->Use simple file sharing(recommended)--- Uncheck it.....


RightClick on the folder to give permissions,

Security->Asp.net account -> Full control -> check all

Wednesday, May 5, 2010

Its Time to move from asp.net webforms to asp.net mvc...

To all my .net friends,
      I was working with asp.net mvc and ships really well with jquery..... Just give a try with asp.net mvc...... 

Biggest advantage to using ASP.Net MVC over web forms



The main advantages of ASP.net MVC are


1) Enables the full control over the rendered HTML.
2) Provides clean separation of concerns(SoC).
3) Enables Test Driven Development (TDD).
4) Easy integration with JavaScript frameworks.
5) Following the design of stateless nature of the web.
6) RESTful urls that enables SEO.
7) No ViewState and PostBack events
The main advantage of ASP.net Web Form are
1) It provides RAD development
2) Easy development model for developers those coming from winform development.