|
I have an existing ASP.NET web application that is for public use and any anonymous user can access it. I would like to implement mechanism for users to sign up. The first thought that crossed my mind is to use the ASP.NET membership API.
So, If I use...
Answer Snippets (Read the full thread at stackoverflow):
4) You can allow.
This will create all the Membership tables, there are no tables for Web Parts in that installation, but that may need confirming.
See here.
Can integrate an existing database.
|
|
Is there any product out there that allows for the management of users using a standard asp.net membership database? I'm looking for a web frontend user management system.
Started by Kenneth Reitz on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
From the web site its features are:
Membership request webpart features to the site collection root web for "manage fba users" and "manage fba roles."
It's all (including CAPTCHA) ....
It worked really well.
Since then.
|
|
Hi,
Does anyone know if there's a way to manage users/roles in the asp.net membership database using a web-based interface you can access remotely?
I need one which doesn't require installation to the Default Website.
Thanks
Started by Shahin on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
With samples of how to implement the aspnet membership database, the asp .net object for managing users and membership information is fairly straightforward, why not do of my site to point to the remote....
There is a great article here.
|
Ask your Facebook Friends
|
I'm creating an ASP.NET MVC site and I need to implement login and membership functionality.
Is this something where I roll my own? I already have a members table in my database, should I create a username and password hash field and just check against...
Started by Simucal on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Just add of information ....
When you create a new ASP.NET MVC site" However, like I said, basic membership functionality is already present in an MVC site.
membership or consider using http://www.codeplex.com/MvcMembership .
|
|
Through acquisition we have a number of products that require authentication and authorisation. The products include web sites and client side applications, the client side applications use some web services. We are a .Net shop and servers will be running...
Started by John Plummer on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You could let your for membership either....
Yes, Active Directory or another be something you just whip up by slapping a library together with a web server.
To access data at another web site make a good, distributed solution.
|
|
I found an article that says:
"To access the Web Site Administration Tool, on the Website menu, click ASP.Net Configuration."
I dont see a Website menu in visual studio 2008 when i am looking at my asp.net mvc solution.
Is there any other way i can setup...
Started by oo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try converting your project to a web....
Try http://blogs.msdn.com/rahulso/archive/2006/03/09/how-to-use-web-site-administration-tool setup Roles with asp.net membership using the web.config file, and actually defining the users.
|
|
I have a site using ASP.NET membership. I also have an excel file with about 60 user records. How can I import the records into the membership database, without having to type all 60 into the ASP.NET Web Site Administration Tool.
Thank you
Started by shimonyk on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Choice 1
If you're lucky, Excel has a way to export the rows directly to your database (this depends on which Database you're using)
Choice 2
Write a program that iterates over each row in the excel table and inserts it manually into your database (again... .
|
|
Is there any framework/library for using ASP.NET Membership Provider with confirmation email, something ready to be used ?
Standard functionality used on almost all public web sites.
Started by Robert Vuković on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Good example:
4Guys from Rolla : Examining ASP.NET 2.0's Membership, Roles, and Profile
You can try HeroCoder , I'm using it in a couple of web apps..
|
|
I have just created a user in ASP.NET MVC ,and i want to insert him into Membership table. How can i do that? , because i can`t insert into Membership_Users thanks
Started by alinpopescu on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This article : http://odetocode.com/articles/427.aspx
You can try using ASP.NET web site administration tools
http://en.wikipedia.org/wiki/ASP.NET_Web_Site_Administration_Tool
httpYou have to use the membership provider....
|
|
I'm using Visual Studio 2008, MS SQL server 2008 Express
SQL server: zeroonea\SQL2008EXPRESS
i'm create a webproject, made a dbtest.mdf in App_Data, made some tables, use aspnet_regsql to create membership tables in there, everything work fine.
my connection...
Started by zeroonea on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Is this any use?
http://weblogs.asp.net/lhunt/archive/2005/09/26/425966.aspx
The fact it's SQLExpress may be adding an extra complication here .
Did you replace the db login and password with *** for the sample? If not, that's probably your problem .
|