javascript_howto thread: Pass variable to ASP script from javascript
Maybe you can use the querystring?
Like:
function passdata(xx){ <-- Value off of Text Box
location.href = "yourPage.asp?data=" + xx
}
/Peter
|
![]() |
P2P Archives
|
|
New Titles for ASP.NET |
javascript_howto thread: Pass variable to ASP script from javascript
Maybe you can use the querystring?
Like:
function passdata(xx){ <-- Value off of Text Box
location.href = "yourPage.asp?data=" + xx
}
/Peter
|