首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

一个小疑点,input标签中的内容动态显示

2012-03-28 
一个小问题,input标签中的内容动态显示%StringvaluenewString((request.getParameter( capableName ))

一个小问题,input标签中的内容动态显示
<%

String   value   =   new   String((request.getParameter( "capableName ")).getBytes( "ISO-8859-1 "), "GB2312 ");


  %>
 

 
</head>
<body>
<form       method= "get "   action= "GateWayServlet ">

<input   type= "text "   name= "strCapable "   readonly   />
  <br/>


如果想要设置strCapable的值为vlue,应该怎么做呢?

[解决办法]
<input type= "text " name= "strCapable " readonly value= " <%=value%> " />

热点排行