文本框:<html:text property="user.userid"></html:text><br>
   密码框:<html:password property="user.password"></html:password><br>
 
对应<input > 那些属性  
  还有<html: select>
  里的属性 对应input 那些属性

解决方案 »

  1.   

    <html:text property="user.userid"></html:text>---》<input type='text' name='user.userid' />
    <html:password property="user.password"></html:password>---》
                                                     <input type='password' name='user.password' /><html: select> ---------------------------------》 <select name='Xxx'>
      

  2.   

    LZ为什么不去看看材料呢http://www.w3school.com.cn/html/html_primary.asp
         
      

  3.   


    property="user.password"  这个user.passwoed 是什么自己起的名在   还是??