Hi All,
I have a vbscript function which is returing value of combobox selection like this.
<script language = "vbscript">
function GetStrProduct
dim strProduct
strProduct = document.all("cboProduct".value
GetStrProduct = strProduct
end function
</script>
now how can I retrieve this value in my ASP
I'm doing this
<div>
<%
dim product
product = GetStrProduct
Response.write(product)
%>
</div>
and its returning blank. Please help. I'm badly stuck.
Wondering how is it possible???
Thanks.
I have a vbscript function which is returing value of combobox selection like this.
<script language = "vbscript">
function GetStrProduct
dim strProduct
strProduct = document.all("cboProduct".value
GetStrProduct = strProduct
end function
</script>
now how can I retrieve this value in my ASP
I'm doing this
<div>
<%
dim product
product = GetStrProduct
Response.write(product)
%>
</div>
and its returning blank. Please help. I'm badly stuck.
Wondering how is it possible???
Thanks.