role and membership
-
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 :)
-
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 :)
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.
-
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.
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> -
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 :)
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.
-
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 :)
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> -
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>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.
-
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.
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.
-
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.
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>