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
Printable View
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
Sure, you should be able to use javascript and use a session variable to hold the information.
Can you show me an example please ?
nmretd.
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.