I am sending one variable through an html file to another but using the code bellow to the second file it does't grab the variable.
For example : From i am sending myfile.html?myvariable=x
and i am trying to grab it with the code bellow..
<script type="text/javascript">
$(document).ready(function() {
var myletter = Request.QueryString("myvariable");
alert (myletter);
});
</script>
Why it's not working?