PDA

Click to See Complete Forum and Search --> : pop up window


nmretd
Jun 19th, 2000, 08:29 PM
Is it possible to get a username and password by using a popup window with two text fields rather than creating a form on an asp page ?

nmretd

compuGEEK
Jun 19th, 2000, 10:24 PM
Sure, you should be able to use javascript and use a session variable to hold the information.

nmretd
Jun 19th, 2000, 10:56 PM
Can you show me an example please ?

nmretd.

compuGEEK
Jun 20th, 2000, 10:53 PM
Hi nmretd,

Do you mean something like this?


<script language="javascript">

var AskForName = prompt ("What is your name?");
document.write(AskForName);

</script>

You can email me if you need more help.