<!--#include file="share/Conn.asp" -->
<html>
<head>
<title>图片显示</title>
<style type="text/css">
<!--
body { font-family: "宋体"; font-size: 9pt; margin-top: 0px; margin-left: 0px; margin-right: 0px}
A { COLOR:black; FONT-SIZE: 9pt; FONT-WEIGHT: 400; TEXT-DECORATION: none }
A:hover { COLOR: red; FONT-SIZE: 9pt; FONT-WEIGHT: 400; TEXT-DECORATION: underline }
a:active { font: 9pt "宋体"; cursor: hand; color: #FF0033 }
a.cc:hover { font: 9pt "宋体"; cursor: hand; color: #FF0033}
.box { font: 9pt "宋体"; position: absolute; background: #ffffff }
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#fef4d9">
<script>
function showing(id,timeid) {
newX = window.event.x + document.body.scrollLeft
newY = window.event.y + document.body.scrollTop
menu = document.all.itemopen
if ( menu.style.display == ""){
menu.style.display = "none" }
else {
menu.style.display = ""}
menu.style.pixelLeft = newX+20
menu.style.pixelTop = newY
}
</script>
<table width="100%" border="1" cellspacing="1" cellpadding="1">
<%sql="select userid,signtime from kqxxb"
rs.open sql,conn,1,1
while not rs.eof
id=rs("userid")
timeid=rs("signtime")
%>
<tr>
<td align="center" onClick="showing(<%=id%>,<%=timeid%>)"><%=rs("userid")%></td>
</tr>
<%rs.movenext
wend%>
</table>
<table width="100" height="100" border="0" cellpadding="0" cellspacing="0" class='box' id="itemopen" style='display:none'>
<tr><td><img src="showing.asp?" width="100" height="100"></td></tr>
</table>
<!-- End of Popup Menu -->
</body>
</html>
怎样才能将函数的参数值这种形式showing.asp?id=id&timeid=timeid 传给showing.asp?