siryl
|
| Posted: 07/06/2002, 9:35 AM |
|
is there any way i can make a pop up message when someone registers a new account it pops up with something like give admins day to add you to the members page...that you for registering
|
|
|
 |
Nicole
|
| Posted: 07/08/2002, 1:58 AM |
|
Siryl,
You can redirect customer to some page like confirmation page with the message displayed. The other way is to create custom session var when new user is added (in After Insert event), then pop up message using code like below when the page user has been redirected is loaded. The message will pop up depending on session var value. After it is done, you should clear thesession.
Sample code for pop up using ASP+JavaScript. Goes in page Open event (for CC) or in page AfterInitializae event (for CCS):
if condition_to_popup then
response.write "<script language = 'javascript'> alert('message text') </script>"
end if
|
|
|
 |
|