|
|
|
|
|
| | |
|
Active Server Pages asp source code database MS SQL MS Access .mdb adovbs.inc cookies calendar codes sql commands scripts asp programming tutorials iis web server components 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
|
|
|
|
|
|
|
|
|
|
|
|