Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

New User Notification

New Here ,
Jun 19, 2006 Jun 19, 2006
I am creating a web site where the users have to be registere in order to access the site. To accomidate that i have created a registration page.

But registration alone will gurantee automatic access to the site, therefore the default access level is set at guest.

So far there is not problem.

Now the feature i am looking for is to get notified by the server whenever a new user has registered. That way i can review the infomration and then adjust the access level accordingly. Otherwise i have to check the database everyday to see if anyone has registered!

Anyone knows a good way to get this accomplished.
TOPICS
Server side applications
368
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jun 19, 2006 Jun 19, 2006
have the server send you an email.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 19, 2006 Jun 19, 2006
I thought about that but not sure what script i would have to execute to tell the server to send me an email?

quote:

Originally posted by: jeremyluby
have the server send you an email.


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jun 19, 2006 Jun 19, 2006
what scripting language do you have on the server?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 19, 2006 Jun 19, 2006
The server is Windows Server 2003, IIS v6.0. The site is based on ASP VBScript. The database server is SQL 2000. I hope i covered all the basis!!!

quote:

Originally posted by: jeremyluby
what scripting language do you have on the server?




Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 20, 2006 Jun 20, 2006
You need to put a CDOSYS script in your page, the page that performs the
Insert, prefferably after the Insert has completed. You can incorporate the
new users credentials into the email script by using Request.Form or
Request.Querystring to get the information the user enered on the previous
page. This way you will be emailed whenever a new user is entered into the
DB.

Do a Google for 'CDOSYS'. You will find lots of information on how to use it
and what it can do.

Pat.


"esonline" <webforumsuser@macromedia.com> wrote in message
news:e77mia$leu$1@forums.macromedia.com...
> The server is Windows Server 2003, IIS v6.0. The site is based on ASP
> VBScript. The database server is SQL 2000. I hope i covered all the
> basis!!!
>
>
quote:

Originally posted by: jeremyluby
> what scripting language do you have on the server?
>
>

>
>
>


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 20, 2006 Jun 20, 2006
LATEST
Thank you very much. That worked out prefectly. I was getting refferd to using fomrmail and i did not really like the idea. This method is much better. Thanks to everyone for their replies.

quote:

Originally posted by: Newsgroup User
You need to put a CDOSYS script in your page, the page that performs the
Insert, prefferably after the Insert has completed. You can incorporate the
new users credentials into the email script by using Request.Form or
Request.Querystring to get the information the user enered on the previous
page. This way you will be emailed whenever a new user is entered into the
DB.

Do a Google for 'CDOSYS'. You will find lots of information on how to use it
and what it can do.

Pat.


"esonline" <webforumsuser@macromedia.com> wrote in message
news:e77mia$leu$1@forums.macromedia.com...
> The server is Windows Server 2003, IIS v6.0. The site is based on ASP
> VBScript. The database server is SQL 2000. I hope i covered all the
> basis!!!
>
>
quote:

Originally posted by: jeremyluby
> what scripting language do you have on the server?
>
>

>
>
>





Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jun 20, 2006 Jun 20, 2006
At the same time, I would create a page that allows you to manipulate user permissions, that way you can make the changes on line, instead of directly interacting with the DB.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines