Membership

  • Thread starter Thread starter shapper
  • Start date Start date
S

shapper

Hello,

Can I use the Membership, Roles and Profiles in ASP.NET MVC as in
ASP.NET Web Forms?

Can I change the SQL table names? How can I point my application to
those renamed tables?

Where can I get the scripts to create the ASP.NET Membership SQL
tables?

Thank You,

Miguel
 
Can I change the SQL table names? How can I point my application to
those renamed tables?

Yes. You can change the name of the tables.
Ensure that you just change the definition of the stored-procedures
generated.

Where can I get the scripts to create the ASP.NET Membership SQL
tables?

Use:

aspnet_regiis -A all -sqlexportonly <Name-of-File-To-Write-Output-To>

aspnet_regiis can be found in C:\WINDOWS\Microsoft\Framework\v2.0.50727
folder.



Hope that Helps.
 
Back
Top