Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Javascript in ASP

Status
Not open for further replies.

TickleMeEmo

Programmer
Feb 20, 2003
9
0
0
US
Yep, yet another ASP and Javascript question.

Basically want to to assign the value of a Javascript variable to an ASP variable.

<%
Dim AspVariable
AspVariable = &quot; <SCRIPT LANGUAGE=JavaScript><!-- document.write(JavascriptVariable); // --></SCRIPT> &quot;
%>

I need to do this to send the javascript variable in an email.

I'm sure this is a client-side vs server-side problem, but there has to be a way to do it.
 
typically this is handled when a <form> is submitted...you use ASP to get the variable values from Request.Form or Request.QueryString =========================================================
while (!succeed) try();
-jeff
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top