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!

self submit - syntax help

Status
Not open for further replies.

stonehead

Technical User
May 2, 2007
58
US
Hi,

I need to do form self submit.

<%

SenderID = Request("Senderid")
MessageType = Request("MessageType")
RefID = Request("refid")

%>

<script language = javascript>
function subVerify()
{
document.ResponseForm.action = 'EmailMessage.asp?Refid=' & RefID & 'MessageType='& MessageType & ';
document.ResponseForm.submit();
}

How do I concatinate those strings above ? The href should look like
Thanks a lot.
 
Never mind. I got that solved. Thanks all.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top