Quantcast
Channel: Go4Expert
Viewing all articles
Browse latest Browse all 1990

passing string to javascript function from asp

$
0
0
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


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>")

 %>
 

Viewing all articles
Browse latest Browse all 1990

Trending Articles