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

📄 editjiangpin.asp

📁 这是惠州城市超市购物管理系统的源代码
💻 ASP
字号:
<!--#include file="conn.asp"-->
<%if session("admin")="" then
response.Write "<script language='javascript'>alert('网络超时或您还没有登陆!');window.location.href='login.asp';</script>"
response.End
else
if session("flag")>1 then
response.Write "<div align=center><font size=80 color=red><b>您没有此项目管理权限!</b></font></div>"
response.End
end if
end if
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../css.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="95%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#CCCCCC">
  <tr> 
    <td height="20" bgcolor="F1F1F1"> 
      <div align="center"><font color="#000000">修改奖品</font></div>
    </td>
  </tr>
  <tr> 
    <form name="myform" method="post" action="savejiangpin.asp?action=edit&id=<%=request("id")%>" onSubmit="return checkkk()" >
      <td height="126" bgcolor="#FFFFFF"> 
        <%dim rs1
set rs1=server.CreateObject("adodb.recordset")
rs1.open "select * from shop_jiangpin where shopid="&request("id"),conn,1,1%>
        <table width="90%" border="0" align="center" cellpadding="2" cellspacing="5">
          <tr> 
            <td width="23%" align="right">奖品名称: </td>
            <td colspan="2"> 
              <input name="shopname" type="text"  class="wenbenkuang" id="shopname" size="30" value="<%=trim(rs1("shopname"))%>">
            </td>
          </tr>
          <tr> 
            <td width="23%" align="right">规格: </td>
            <td colspan="2"> 
              <input name="guige"  class="wenbenkuang" type="text" id="guige" size="20" value="<%=trim(rs1("guige"))%>">
            </td>
          </tr>
          <tr> 
            <td width="23%" align="right">&nbsp; </td>
            <td colspan="2">市场价 
              <input name="shichangjia"  class="wenbenkuang" type="text" id="shichangjia" size="6" onKeyPress	= "return regInput(this,	/^\d*\.?\d{0,2}$/,		String.fromCharCode(event.keyCode))" 
		onpaste		= "return regInput(this,	/^\d*\.?\d{0,2}$/,		window.clipboardData.getData('Text'))"
		ondrop		= "return regInput(this,	/^\d*\.?\d{0,2}$/,		event.dataTransfer.getData('Text'))" value="<%=trim(rs1("shichangjia"))%>">
              元   所需积分 
              <input name="jifen" type="text"  class="wenbenkuang" id="jifen" size="6" onKeyPress	= "return regInput(this,	/^\d*\.?\d{0,2}$/,		String.fromCharCode(event.keyCode))" 
		onpaste		= "return regInput(this,	/^\d*\.?\d{0,2}$/,		window.clipboardData.getData('Text'))"
		ondrop		= "return regInput(this,	/^\d*\.?\d{0,2}$/,		event.dataTransfer.getData('Text'))" value="<%=trim(rs1("jifen"))%>">
            </td>
          </tr>
          <tr> 
            <td height="18" width="23%" align="right">奖品图片: </td>
            <td height="18" colspan="2"> 
              <input name="shoppic" type="text"  class="wenbenkuang" id="shoppic" size="30" value="<%=trim(rs1("shoppic"))%>">
              &nbsp; 
              <input type="button" name="Submit2"  class="go-wenbenkuang" value="上传小图片" onClick="window.open('../upload_flash.asp?formname=myform&editname=shoppic&uppath=shoppic&filelx=jpg','','status=no,scrollbars=no,top=20,left=110,width=420,height=165')">
            </td>
          </tr>
          <tr> 
            <td height="18" width="23%" align="right">&nbsp; </td>
            <td height="18" colspan="2"> 
              <input name="shoppic2" type="text"  class="wenbenkuang" id="shoppic2" size="30" value="<%=trim(rs1("shoppic2"))%>">
              &nbsp; 
              <input type="button" name="Submit2"  class="go-wenbenkuang" value="上传大图片" onClick="window.open('../upload_flash.asp?formname=myform&editname=shoppic2&uppath=shoppic&filelx=jpg','','status=no,scrollbars=no,top=20,left=110,width=420,height=165')">
            </td>
          </tr>
          <tr> 
            <td valign="top" width="23%" align="right">奖品说明: </td>
            <td colspan="2"> 
              <textarea name="shopcontent"  class="wenbenkuang" cols="46" rows="8" id="shopcontent"><%=trim(rs1("shopcontent"))%></textarea>
            </td>
          </tr>
          <tr> 
            <td height="32" colspan="2"> 
              <div align="center"> 
                <input name="xianshi" type="checkbox" id="xianshi" value="1" <%if rs1("xianshi")=1 then%>checked<%end if%>>
                显示(指让不让用户在前台看到)</div>
            </td>
            <td width="25%" align="center"> 
              <input type="submit" name="Submit" value="修 改"  class="go-wenbenkuang">
            </td>
          </tr>
        </table>
        <%rs1.close
								set rs1=nothing%>
      </td>
    </form>
  </tr>
</table>
<br>
<!--#include file="copyright.asp"-->
</body>
</html>

<SCRIPT LANGUAGE="JavaScript">
<!--
function checkkk()
{
     if(checkspace(document.myform.shopname.value)) {
	document.myform.shopname.focus();
    alert("请输入商品名称!");
	return false;
  }
     if(checkspace(document.myform.shichangjia.value)) {
	document.myform.shichangjia.focus();
    alert("请输入市场价格!");
	return false;
  }
     if(checkspace(document.myform.jifen.value)) {
	document.myform.jifen.focus();
    alert("请输入所需积分!");
	return false;
  }
}
function checkspace(checkstr) {
  var str = '';
  for(i = 0; i < checkstr.length; i++) {
    str = str + ' ';
  }
  return (str == checkstr);
}
//-->
</script>
<script>
	function regInput(obj, reg, inputStr)
	{
		var docSel	= document.selection.createRange()
		if (docSel.parentElement().tagName != "INPUT")	return false
		oSel = docSel.duplicate()
		oSel.text = ""
		var srcRange	= obj.createTextRange()
		oSel.setEndPoint("StartToStart", srcRange)
		var str = oSel.text + inputStr + srcRange.text.substr(oSel.text.length)
		return reg.test(str)
	}
</script>

⌨️ 快捷键说明

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