I wrote my first script but it does not work.
From a url:
http://www.mysite.com/page.aspx?var1=123&var2=987
where am I going wrong?Code:<script src="~/Scripts/jquery-1.4.1.js" type="text/javascript"></script> <script language="javascript" type="text/javascript"> $(document).ready(function() { var GET1=$("#TextBox22"); var GET2=$("#TextBox23"); GET1.val($.url("?var1")); GET2.val($.url("?var2")); }); </script>



Reply With Quote


Bookmarks