如何判断鼠标点击的是哪一菜单
由于一个库中的多数表只是表名不同,想点击菜单中不同的表名,显示所有内容,MENU.asp 中代码如下:<tr>
<td height="30" align="center" background="../images/left_bg01.gif" style="cursor:hand" onclick="javascript:parent.right.location.href=main.asp';"><table cellpadding="0" cellspacing="0" width="100%"><tr><td width="50"> </td><td>查建设单位</td></tr></table></td>
</tr>
<tr>
<td height="30" align="center" background="../images/left_bg01.gif" style="cursor:hand" onclick="javascript:parent.right.location.href='main.asp';"><table cellpadding="0" cellspacing="0" width="100%"><tr><td width="50"> </td><td>查客户单位</td></tr></table></td>
</tr>
我想通过一个页面判断不同菜单知道,当鼠标点击菜单时,到底是点:“查建设单位”,还是“查客户单位”,,并把菜单名传递给main.asp
问:main.asp代码如何写。。诚谢。