Monday 21 September 2015

Differences between internet and intranet application in asp.net mvc.


The main difference between internet and intranet application template is the way how users are authenticated.

Internet Template:-
Internet template by default has controllers (Home and Account controller) with all the logic and functionality implemented in view and Actions. Simply we can say that is the extended version of basic template. In this template membership management functionality gives option to the user to register and login, change the password etc. in the website.

Intranet Template:-
Intranet template has empty web application with only home controller. It support for windows authentication. Windows authentication is optional choice. Configuring web application you should have to do some manual configuration in web config file.

For intranet application you need not to do register or sign and password reminder  because it is using windows authentication.
All other parts of intranet application is same as internet application.

No comments:

Post a Comment

Note: only a member of this blog may post a comment.