Hi,
i tried the following to use a string from asp code in javascript but it didnt work....please tell me how to pass a string to a javascript
i tried the following to use a string from asp code in javascript but it didnt work....please tell me how to pass a string to a javascript
Code:
<script language="JavaScript">
function ChangeAll(f)
{
alert(f);
}
</script>
<%
r="here"
response.write("<form method='post'>")
response.write("<input type='button' value='Submit' onClick='ChangeAll(''"&r&"'')' ")
response.write("</form>")
%>
Comment