asp.net template for user registration

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ryan

    #1

    asp.net template for user registration

    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


  • Walter Wang [MSFT]

    #2
    RE: asp.net template for user registration

    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/is...t/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.

    Comment

    • Ryan

      #3
      Re: asp.net template for user registration

      Wonderful, this is exactly what I'm looking for.

      Thank you Walter!

      Ryan

      "Walter Wang [MSFT]" <wawang@online. microsoft.com> wrote in message
      news:F58m8CDlGH A.5832@TK2MSFTN GXA01.phx.gbl.. .[color=blue]
      > 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/is...t/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.
      >[/color]


      Comment

      • Walter Wang [MSFT]

        #4
        Re: asp.net template for user registration

        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.

        Comment

        Working...