|
|
|
|
|
| | |
| |
Active Server Pages ASP programs help tutorial tutorials routine routines jobs listserve mailinglist bulletin board bulletin boards programming snippet snippets CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
|
|
Subject: |
Pass |
|
From: |
Paul |
|
Date: |
3/2/1999 10:43:49 AM |
|
IP: |
149.254.72.218 |
I have this code:
<form action="somepage.asp" method="post">
<input type="text" value="somevalue" name="somevariable">
<input type="submit">
</form>
that when the user submits it opens the page 'somepage.asp' which has this code in it:
<script LANGUAGE="VBScript">
sub window_onload()
<% somevariable = Request.Form("somevariable") %>
msgbox (somevariable)
end sub
</script>
The effect is that a Msgbox is produced but it does not contain the form data that was entered into the original page. Does anybody know why?
Thanks. |
Follow Up - Re: Pass - Harlan 3/2/1999 3:32:05 PM
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|