|
|
|
|
|
| | |
|
vbscript active server pages ASP vbscript SQL database informix oracle SQL Server Perl CGI Delphi PHP source code code sample samples program CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: Passing a value from a Table to a Form |
From: |
Rob |
Date: |
5/3/2001 1:50:37 PM |
IP: |
198.246.222.18 |
.... I think you may be working a bit too hard
just use a javascript function
<Script language="JavaScript 1.2">
function linktoform()
{
var x=(the value you want to pass)
var y=(the regular name of the page)
Var link=y+"?subject="+x
window.open(link,'_self')
}
</Script>
<a href="#" onclick="linktoform()">
on the receiving page use
<%
subject=Request.querystring("subject")
%>
no biggie
|
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|