I want to substitute the the variables for new parameters when I call this function.
Do the varables have to be different in the main page?
I guess the basic question that I need answered it if I pass vsupport for vprior will vprior change in line 3 to vsupport.
Thanks for the help.
<%function split_selects(vprior,priority)
vprior=Request.Form("priority"
If vprior=Request.form("priority"<>"" then
vprior=Request.QueryString("priority"
else
end if
'Response.Write vprod
vprior=replace(vprior,"'",""
arroption = Split(vprior,","
vprior=""
For X=0 to ubound(arroption)-1
vprior= "'"&trim(arroption(X))&"'"&","& trim(vprior)
'Response.Write vprod
Next
X=ubound(arroption)
'Response.Write x
vprior=trim(vprior)+ "'"+trim(arroption(X))+"'"
End function %>
Do the varables have to be different in the main page?
I guess the basic question that I need answered it if I pass vsupport for vprior will vprior change in line 3 to vsupport.
Thanks for the help.
<%function split_selects(vprior,priority)
vprior=Request.Form("priority"
If vprior=Request.form("priority"<>"" then
vprior=Request.QueryString("priority"
else
end if
'Response.Write vprod
vprior=replace(vprior,"'",""
arroption = Split(vprior,","
vprior=""
For X=0 to ubound(arroption)-1
vprior= "'"&trim(arroption(X))&"'"&","& trim(vprior)
'Response.Write vprod
Next
X=ubound(arroption)
'Response.Write x
vprior=trim(vprior)+ "'"+trim(arroption(X))+"'"
End function %>