Posted on: 12/4/2013 10:18:00 PM | Views : 783

I have one textbox and dropdownlist.I want to pass the value of these fields in querystring before I store the value in a tbale. I would like to use java script for aquiring such that I need to concatenate value and pass this into a querystring using sql proc. I am a newbie in using javascript ..can anyone help me out
<script type="text/javascript">  var str1 = "Welcome";  var str2 = "To";  var str3 = "Javascript";  var result = str1 +" "+ str2 +" "+ str3;  document.write(result);

Go to the complete details ...