Difference between ASP.NET Webforms and MVC 3 Membership Provider

Is there a difference in performance between the Webforms membership provider and the MVC 3 membership provider?

+5
source share
2 answers

No.

  • Membership Provider is part of the namespace System.Web.Security
  • Webforms is a namespace System.Web.UI
  • MVC is a namespace System.Web.Mvc

Therefore, there are no dependencies. In other words, you will make the same membership calls with the same membership objects in the MVC application as in the WebForms application.

+5
source

No, MVC is just the design pattern Microsoft used. Thus, you can use membership in all ASP.Net projects.

: . Web.Security

+1

All Articles