如何把javascript 变量传给ASP
各位大侠,小弟遇到点问题请各位帮忙.首先谢谢各位的帮助.<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language="javascript">
<!--
function short() {
//if(confirm("are you sure?") == true) {
window.open("http://www.dfdffdfdf.om/test/ss.asp","ss"); 在ASP里不能把我的变量显示出来请指点该怎么解决
winobj.focus();
// }
}
//-->
</script>
</head>
<body>
<form method="Post" name="Form1">
name <input type="text" name="username"><br>
</form>
<input type="submit" value="submit" size="20" onClick="javascript:short()">
</body>