Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. role and membership

role and membership

Scheduled Pinned Locked Moved ASP.NET
tutorial
8 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Offline
    K Offline
    KhandelwalA
    wrote on last edited by
    #1

    I want to make user registration through role and membership with customized fields like: i want to include columns like:-country,phone etc........how to achieve it.....do i need to use role and membership and make separate table for login and all thing.........and one more thing whenever user registers he should directly added to a default role..............plz guide me a bit :)

    C S A 3 Replies Last reply
    0
    • K KhandelwalA

      I want to make user registration through role and membership with customized fields like: i want to include columns like:-country,phone etc........how to achieve it.....do i need to use role and membership and make separate table for login and all thing.........and one more thing whenever user registers he should directly added to a default role..............plz guide me a bit :)

      C Offline
      C Offline
      Christian Graus
      wrote on last edited by
      #2

      If I were you, I'd just write my own code from scratch. I don't know if there's support for this sort of extension in the built in stuff, but it's so simple to write, you're better off having full control over it IMO.

      Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.

      A 1 Reply Last reply
      0
      • C Christian Graus

        If I were you, I'd just write my own code from scratch. I don't know if there's support for this sort of extension in the built in stuff, but it's so simple to write, you're better off having full control over it IMO.

        Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.

        A Offline
        A Offline
        Abhishek Sur
        wrote on last edited by
        #3

        Christian Graus wrote:

        I'd just write my own code from scratch

        Yes ... Me too. :)

        Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.


        My Latest Articles-->** Microsoft Bing MAP using Javascript
        CLR objects in SQL Server 2005
        Uncommon C# Keywords
        /xml>

        1 Reply Last reply
        0
        • K KhandelwalA

          I want to make user registration through role and membership with customized fields like: i want to include columns like:-country,phone etc........how to achieve it.....do i need to use role and membership and make separate table for login and all thing.........and one more thing whenever user registers he should directly added to a default role..............plz guide me a bit :)

          S Offline
          S Offline
          sashidhar
          wrote on last edited by
          #4

          KhandelwalA wrote:

          I want to make user registration through role and membership with customized fields like

          Drag and drop a CreateUserWizard control and Convert to customNavigation template..! AFAIK The new fileds will not enter into the roles table .You Have to write your own code for the new fields..!:cool::thumbsup: You Can Use profiles also ..! For More Info try this article..! http://weblogs.asp.net/scottgu/archive/2006/07/05/Tip_2F00_Trick_3A00_-Gathering-Custom-User-Registration-Information.aspx[^]

          LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

          1 Reply Last reply
          0
          • K KhandelwalA

            I want to make user registration through role and membership with customized fields like: i want to include columns like:-country,phone etc........how to achieve it.....do i need to use role and membership and make separate table for login and all thing.........and one more thing whenever user registers he should directly added to a default role..............plz guide me a bit :)

            A Offline
            A Offline
            Abhishek Sur
            wrote on last edited by
            #5

            Christian is right. I would do similar to him. I would write my own code for Roles and Membership. If you still need to know about .NET role - Memebership Check this.[^] :thumbsup:

            Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.


            My Latest Articles-->** Microsoft Bing MAP using Javascript
            CLR objects in SQL Server 2005
            Uncommon C# Keywords
            /xml>

            S 1 Reply Last reply
            0
            • A Abhishek Sur

              Christian is right. I would do similar to him. I would write my own code for Roles and Membership. If you still need to know about .NET role - Memebership Check this.[^] :thumbsup:

              Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.


              My Latest Articles-->** Microsoft Bing MAP using Javascript
              CLR objects in SQL Server 2005
              Uncommon C# Keywords
              /xml>

              S Offline
              S Offline
              sashidhar
              wrote on last edited by
              #6

              Abhishek Sur wrote:

              I would write my own code for Roles and Membership.

              What do You Mean by that..! 1)You will Create new tables without the help of asp.net forms authentication...! Can you please be more clear..!:cool:

              LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

              C A 2 Replies Last reply
              0
              • S sashidhar

                Abhishek Sur wrote:

                I would write my own code for Roles and Membership.

                What do You Mean by that..! 1)You will Create new tables without the help of asp.net forms authentication...! Can you please be more clear..!:cool:

                LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

                C Offline
                C Offline
                Christian Graus
                wrote on last edited by
                #7

                Exactly.

                Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.

                1 Reply Last reply
                0
                • S sashidhar

                  Abhishek Sur wrote:

                  I would write my own code for Roles and Membership.

                  What do You Mean by that..! 1)You will Create new tables without the help of asp.net forms authentication...! Can you please be more clear..!:cool:

                  LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

                  A Offline
                  A Offline
                  Abhishek Sur
                  wrote on last edited by
                  #8

                  Yes. I would do just that. I would create my own HttpModule to manage Roles. :)

                  Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.


                  My Latest Articles-->** Microsoft Bing MAP using Javascript
                  CLR objects in SQL Server 2005
                  Uncommon C# Keywords
                  /xml>

                  1 Reply Last reply
                  0
                  Reply
                  • Reply as topic
                  Log in to reply
                  • Oldest to Newest
                  • Newest to Oldest
                  • Most Votes


                  • Login

                  • Don't have an account? Register

                  • Login or register to search.
                  • First post
                    Last post
                  0
                  • Categories
                  • Recent
                  • Tags
                  • Popular
                  • World
                  • Users
                  • Groups