Home All Groups Group Topic Archive Search About

asp.net template for user registration

Author
19 Jun 2006 8:41 PM
Ryan
I am going to create an asp site that allows the users to fill out
application information.  Their personal information will be stored server
side in a SQL 2005 database and they can come back to the site later and
repopulate the fields with their information by using a login (email
address/password).  Are their any templates available for sites that include
basic registration?

Thanks,
Ryan

Author
20 Jun 2006 6:13 AM
Walter Wang [MSFT]
Hi Ryan,

Thank you for your post.

Based on my understanding, you're using ASP.NET 2.0 and your question is
about:
1) How to let the user register and fill out application information on the
website;
2) When the user returns back and login, how to retrieve the filled
information;
If I've misunderstood anything, please feel free to post here.

The user registration and login can be implemented using ASP.NET
Membership. You can find more information about it here:

#Introduction to Membership
http://msdn2.microsoft.com/en-us/library/yh26yfzy.aspx

#Walkthrough: Creating a Web Site with Membership and User Login (Visual
Studio)
http://msdn2.microsoft.com/en-us/library/879kf95c.aspx

You will see that it requires very little code to have a fully functional
user registration and login system.

The user information storage can be implemented using ASP.NET Profile. You
can find more information about it here:

#ASP.NET Profile Properties Overview
http://msdn2.microsoft.com/en-us/2y3fs9xs.aspx

#Walkthrough: Maintaining Web Site User Information with Profile Properties
http://msdn2.microsoft.com/en-us/taab950e.aspx

You can use user-defined types as Profile properties, see following MSDN
magazine article for a sample:

#Extreme ASP.NET: A New Solution to an Old State Storage Problem -- MSDN
Magazine, April 2006
http://msdn.microsoft.com/msdnmag/issues/06/04/extremeaspnet/default.aspx

Hope this helps. Please feel free to post here if anything is unclear.

Regards,
Walter Wang
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
Author
20 Jun 2006 1:30 PM
Ryan
Wonderful, this is exactly what I'm looking for.

Thank you Walter!

Ryan

Show quoteHide quote
"Walter Wang [MSFT]" <waw***@online.microsoft.com> wrote in message
news:F58m8CDlGHA.5832@TK2MSFTNGXA01.phx.gbl...
> Hi Ryan,
>
> Thank you for your post.
>
> Based on my understanding, you're using ASP.NET 2.0 and your question is
> about:
> 1) How to let the user register and fill out application information on
> the
> website;
> 2) When the user returns back and login, how to retrieve the filled
> information;
> If I've misunderstood anything, please feel free to post here.
>
> The user registration and login can be implemented using ASP.NET
> Membership. You can find more information about it here:
>
> #Introduction to Membership
> http://msdn2.microsoft.com/en-us/library/yh26yfzy.aspx
>
> #Walkthrough: Creating a Web Site with Membership and User Login (Visual
> Studio)
> http://msdn2.microsoft.com/en-us/library/879kf95c.aspx
>
> You will see that it requires very little code to have a fully functional
> user registration and login system.
>
> The user information storage can be implemented using ASP.NET Profile. You
> can find more information about it here:
>
> #ASP.NET Profile Properties Overview
> http://msdn2.microsoft.com/en-us/2y3fs9xs.aspx
>
> #Walkthrough: Maintaining Web Site User Information with Profile
> Properties
> http://msdn2.microsoft.com/en-us/taab950e.aspx
>
> You can use user-defined types as Profile properties, see following MSDN
> magazine article for a sample:
>
> #Extreme ASP.NET: A New Solution to an Old State Storage Problem -- MSDN
> Magazine, April 2006
> http://msdn.microsoft.com/msdnmag/issues/06/04/extremeaspnet/default.aspx
>
> Hope this helps. Please feel free to post here if anything is unclear.
>
> Regards,
> Walter Wang
> Microsoft Online Community Support
>
> ==================================================
> When responding to posts, please "Reply to Group" via your newsreader so
> that others may learn and benefit from your issue.
> ==================================================
>
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
>
Author
21 Jun 2006 12:59 AM
Walter Wang [MSFT]
Hi Ryan,

Appreciate your update and response. If you have any other questions or
concerns, please do not hesitate to contact us. It is always our pleasure
to be of assistance.

Have a nice day!

Regards,
Walter Wang
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.