二进制内容如图片是用 ResultSet.getBinaryStream
你这个text中的值是 员工号<input type="text" name="name" size="32" maxlength="64">这个值吧?1:一般action不怎么写,就像一楼说的,empInfo.jsp这里用request.getParament("name") name是input表单的name。。
2:如果你非要这么写。。这样子改
form加一个name <form name="form" method="POST" action="empInfo.jsp?empid =(text中的值)">
查询按钮加个事件。改成button
<input type="button" name="search" value="查询" onclick=fomrsub() />
</td>
加js:
function fomrsub(){
var value = text中的值//这里你拿过值来
document.form.action="empInfo.jsp?empid ="+ value
document.form.submit()
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)