Hi,
I am trying to assign a value to a hidden field by using the following code but its not working.So can anyone give some better suggestion.
function hidval(frm,val)
{
frm.hidden1.value=val
}
<body onload="BLOCKED SCRIPThidval(this.form,<%=value%>)">
<input type="hidden" name="hidden1" value="">
/// In the code Behind I am calling the hidden value as follows
dim var = request.form("hidden1")
but the above code is not working so please help me to solve this issue.