can anyone tell me how to pass a value stored in a javascript function to an ASP variable when onchange event executes for a list box inside an ASP page without rerfreshing the page!!!
For Example:
if i want to pass the value of varchar to a variable Zoom defined in the ASP page on onchange event of a list box inside an asp page(even to a hidden field in the page) how will i do it !!
<%
dim Zoom
%>
function func()
{
var varchar
varchar = "aaa"
}





Bookmarks