⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 complainadd.asp

📁 A Design and Implementation of The Online Shopping System Abstract: Along with the development
💻 ASP
字号:
<!--#include file="../conndb.asp"-->
<!--#include file="isUser.asp"-->
<html>
<head>
<title>客户投诉</title>
<link href=../style.css rel=STYLESHEET type=text/css>
</head>
<script language="javascript">
function FieldChk()
{
  if (document.myform.orderNumber.value=="")
  {
     alert("请输入订单号!");
     document.myform.orderNumber.onfocus();
     return false;
  }
  if (document.myform.content.value=="")
  {
     alert("请输入投诉内容!");
     document.myform.content.onfocus();
     return false;
  }
  return true;
}
</script>
<body>
<form name="myform" action="ComplainSave.asp" method="post">
	<p align="center"><font size=3 color=red><b>客户投诉</b></font></p>
	<br>
        <table border="1" width="90%" cellspacing="1" align="center">
          <tr>
            <td width="20%" align="center">投诉时间</td><td width="80%"><%=Now()%></td>
          </tr>
          <tr>
            <td align="center">用 户 名</td><td><%=Session("user_id")%></td>
          </tr>
          <tr>
            <td align="center">订 单 号</td><td><input type="text" value="" name="orderNumber"></td>
          </tr>
          <tr>
            <td align="center">投诉内容</td>
            <td>
            <textarea rows="10" name="content" cols="50"></textarea></td>      
          </tr>
        </table>
        <p align=center><input type="submit" name="submit11" value=" 投 诉 " onclick="return FieldChk()"></p>
        <p align="center"><a href="javascript:window.close()">[关闭]</a></p>
</form>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -