List_Add.asp
上传用户:xxtaishan
上传日期:2022-01-02
资源大小:4063k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

ASP/ASPX

  1. <LINK REL="stylesheet" HREF="../images/style.css" TYPE="text/css"> <META content="text/html;charset=gb2312" http-equiv="Content-Type">
  2. <style type="text/css">
  3. <!--
  4. .style1 {
  5. color: #FFFFFF;
  6. font-weight: bold;
  7. }
  8. -->
  9. </style>
  10. <form name="form1" method="post" action="List_Save.asp" onSubmit="return frmchk();" enctype="multipart/form-data">
  11.   <table width="100%" border="1" cellspacing="0" cellpadding="2" align="center" bordercolordark="#ffffff" bordercolorlight="#000000">
  12.     <tr bgcolor="#3366CC"> 
  13.       <td height="25" colspan="2"> 
  14.         <div align="center" class="style1">信息添加</div>      </td>
  15.     </tr>
  16.     <tr> 
  17.       <TD WIDTH="21%" height="25"> 
  18.         <DIV ALIGN="center"> <FONT COLOR="#FF0000"> * </FONT>新闻标题:</DIV>      </TD>
  19.       <td width="79%" height="25"> 
  20.         <input type="text" name="title" size="50">      </td>
  21.     </tr>
  22.     <tr> 
  23.       <TD WIDTH="21%" height="25"> 
  24.         <DIV ALIGN="center"> <FONT COLOR="#FF0000">*</FONT> 新闻内容:</DIV>      </TD>
  25.       <td width="79%" height="25"> 
  26.         <textarea name="content" cols="85" rows="25"></textarea>      </td>
  27.     </tr>
  28.     <tr> 
  29.       <TD WIDTH="21%" height="25">
  30.         <div align="center">* 新闻图片:</div>      </TD>
  31.       <td width="79%" height="25">
  32.         <input type="file" name="file" size="35">      </td>
  33.     </tr>
  34.     <tr> 
  35.       <td height="25" colspan="2"> 
  36.         <div align="center"> 
  37.           <input type="submit" name="Submit" value="添加">
  38.           <input type="button" value="取消" onClick="history.go(-1)">
  39.           <input type="hidden" name="operation" value="add">
  40.       </div>      </td>
  41.     </tr>
  42.   </table>
  43.   <script language="JavaScript">
  44. function frmchk()
  45. {
  46. if (form1.title.value == "")
  47. {
  48. alert("请填写新闻标题!");
  49. return false;
  50. }
  51. if (form1.content.value == "")
  52. {
  53. alert("请填写新闻内容!");
  54. return false;
  55. }
  56. }
  57. </script> <table width="75%" border="0" cellspacing="0" cellpadding="0" align="center" height="34"> 
  58. <tr> <td> <div align="center">说明:<font color="#FF0000">*</font> 为必须填写的内容</div></td></tr> 
  59. </table></form>