Home All Groups Group Topic Archive Search About

how to introduce a lot of users?

Author
6 May 2006 8:37 AM
cas
Hi,

I tried the logon webcontrol after defining some users.
Great, but is it possible to introduce a lot of users in one time (import or
something like that), because i can't imagine i have to do that 100 times,
one user after one?

Thanks
Cas

Author
6 May 2006 12:32 PM
Cowboy (Gregory A. Beamer)
The underlying data is stored in a database. I am not sure exactly what and
where, but if you are using SQL Server, run a profile on the membership
database and watch what is inserted when you insert a new user. You now know
what commands have to be run, so dupe them for a list. To get the list in,
bulk copy (easiest way is Import/Export in SQL Server).

--
Gregory A. Beamer

*************************************************
Think Outside the Box!
*************************************************
Show quoteHide quote
"cas" <cas@nomail> wrote in message
news:%23ugWgiOcGHA.3872@TK2MSFTNGP04.phx.gbl...
> Hi,
>
> I tried the logon webcontrol after defining some users.
> Great, but is it possible to introduce a lot of users in one time (import
> or
> something like that), because i can't imagine i have to do that 100 times,
> one user after one?
>
> Thanks
> Cas
>
>
Are all your drivers up to date? click for free checkup

Author
7 May 2006 12:40 PM
Ray Booysen
Cowboy (Gregory A. Beamer) wrote:
> The underlying data is stored in a database. I am not sure exactly what and
> where, but if you are using SQL Server, run a profile on the membership
> database and watch what is inserted when you insert a new user. You now know
> what commands have to be run, so dupe them for a list. To get the list in,
> bulk copy (easiest way is Import/Export in SQL Server).
>
Also, if you're using the asp.net membership provider pattern, the
source code is available for it so you could manipulate this code to
bulk insert users.

Regards
Ray
Author
8 May 2006 6:41 PM
phil
Thanks

Show quoteHide quote
"Ray Booysen" <rj_booysen***@rjb.za.net> wrote in message
news:ehSkwNdcGHA.5116@TK2MSFTNGP02.phx.gbl...
> Cowboy (Gregory A. Beamer) wrote:
> > The underlying data is stored in a database. I am not sure exactly what
and
> > where, but if you are using SQL Server, run a profile on the membership
> > database and watch what is inserted when you insert a new user. You now
know
> > what commands have to be run, so dupe them for a list. To get the list
in,
> > bulk copy (easiest way is Import/Export in SQL Server).
> >
> Also, if you're using the asp.net membership provider pattern, the
> source code is available for it so you could manipulate this code to
> bulk insert users.
>
> Regards
> Ray

Bookmark and Share