这样子....
<a href="order/shop.asp?ProdId=<%=rsprod("ProdId")%>&action=<%=action%>“ onclick="go(this);">sdfsdfsdfsdfsdf</a>
<script type="text/javascript">
function go(o) {
var txt = document.getElementById('....').value;
o.href +='&info='+txt;
}
</script>
======
另一种方法:
<a href="#" onclick="doSomething('<%=rsprod("ProdId")%>', 'action=<%=action%>')">链接</a>
<script type="text/javascript">
function doSomething(prodId,action) {
// 随便你想干什么
}
</script>
这两种都用到了JS,都对搜索引擎不友好。
都GET了,参数不就在URL里了吗。直接=<%=Request.QueryString("ProdId")%>不行吗~
url?参数1=???&参数2=???
<form action="xxx.asp" method="get">
<input type="text" name="user" value="dingxue">
<input type="submit" value="提交">
</form>
这个就可以,点了提交按钮后会转到 xxx.asp?user=dingxue 去,关键在于<form>的method属性,一般都使用post,你这里可以使用get来达到你想要的效果