English 中文(简体)
想要在此 jsp 页面中显示动态值
原标题:want to show dynamic value in this jsp page

这是我的jsp psge:

<%  while(rs.next()){ %>
<td><input type="checkbox" name="chkName" onclick="selectall()"></td> 
<td><input type="text"  name="empId" value="<%= rs.getString(1)%> "   

disabled="disabled"  maxlength="10"></td>
<td><input type="text" name="device" value="<%= rs.getString(2)%>"  

disabled="disabled" maxlength="10"></td>
<td><input type="text"  name="features" value="<%= rs.getString(3)%>"   

disabled="disabled" maxlength="60"></td>
<td><input type="text"  name="policyName" value="<%= rs.getString(4)%>" 

disabled="disabled" maxlength="10"></td>
<td><input type="text" name="password" id="password" 

disabled="disabled" value="<%=  rs.getString(5) %>" ><input 

type="button" name="Password" id="Password" value="Reset  Password" 

onclick="fillFields(this);"></td>
</tr>
<% } 
%>
</table>
<td><input type="submit" value="Save" colspan="2" onclick= "save

(this)"></td>
<td><input type="submit" value="Delete" colspan="2" onclick="deleted

(this)"></td>
</center>
</form>
<%

实际上, 此jsp 显示一个合并表格( user_ tab & amp; policy_ management), 我想同时更新此合并表格 。 我想将其放入一个会话, 这样我就可以设置并在下一个服务器页面中获取属性 。

所以,你能帮助我, 确切地说,什么我必须 做这个...

问题回答

删除 残疾=残疾 , 您可以在服务器中获取此窗体值





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签