insert.jsp

    技术2022-05-11  70

    <body> <form name="form1" method="post" action="insert.jsp">   <table width="60%"  border="1">     <tr>       <th colspan="2" scope="col">Input Information</th>     </tr>     <tr>       <td width="20" align="right">L_name:</td>       <td width="60"><input name="t_lname" type="text" id="t_lname"></td>     </tr>     <tr>       <td width="20" align="right">F_name:</td>       <td width="60"><input name="t_fname" type="text" id="t_fname"></td>     </tr>     <tr>       <td width="200" align="center"><input type="submit" name="Submit" value="insert"></td>       <td width="200" align="center"><input type="reset" name="Submit2" value="cancle"></td>     </tr>   </table> </form> </body> 

    最新回复(0)