I have developed an ASP.NET application on Visual studio 2010, which takes user details( user name,password etc).
I want to add these user details to the database on Windows Server 2008 R2 which is already created. Can you please tell me the steps how to do this or even some code as I am new to this?
I have developed an ASP.NET application on Visual studio 2010, which takes user details(
Share
Asp.net 2 and up with Membership Framework(choose webproject template) makes life easier for caputuring user registration etc. with minimilistic coding.
Refer this step by step tutorial (for sqlserver)
http://www.asp.net/web-forms/tutorials/security/membership/creating-the-membership-schema-in-sql-server-cs
Switch(target database)
http://msdn.microsoft.com/en-us/library/aa478949.aspx or as above
http://docs.oracle.com/html/E10928_01/OracleMembershipProviderClass.htm
http://www.integratedwebsystems.com/2010/02/how-to-setup-and-configure-mysql-membership-provider-6-2-2-porting-to-mono-part-2-of-3/
Hope this helps and good luck
Krishna