📄 addjiangpin.asp
字号:
<!--#include file="conn.asp"-->
<%if session("admin")="" then
response.Write "<script LANGUAGE='javascript'>alert('网络超时或者您还没有登录请登录');window.location.href='login.asp';</script>"
response.End
end if
%>
<html><head><title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../css/admin.css" rel="stylesheet" type="text/css">
</head>
<body>
<table class="tableBorder" width="90%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#FFFFFF">
<tr>
<td colspan="4" align="center" background="../images/admin_bg_1.gif" height="25"><b><font color="#ffffff">添加新奖品</font></b></td>
</tr>
<tr>
<form name="myform" method="post" action="savejiangpin.asp?action=add" onSubmit="return checkkk()">
<td height="126">
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#FFFFFF">
<tr bgcolor="#E8F1FF">
<td width="30%" align="right">奖品名称: </td>
<td width="70%"><input name="bookname" type="text" id="bookname" size="30"></td>
</tr>
<tr bgcolor="#E8F1FF">
<td align="right">奖品规格: </td>
<td><input name="guige" type="text" id="guige"></td>
</tr>
<tr bgcolor="#E8F1FF">
<td align="right"></td>
<td>
市场价格:<input name="shichangjia" 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="0">
元,所需积分:<input name="jifen" type="text" 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="50">
</td>
</tr>
<tr bgcolor="#E8F1FF">
<td align="right">奖品图片: </td>
<td><input name="bookpic" type="text" id="bookpic" size="30">
<input type="button" name="Submit2" value="上传小图片" onClick="window.open('../upload_flash.asp?formname=myform&editname=bookpic&uppath=bookpic&filelx=jpg','','status=no,scrollbars=no,top=20,left=110,width=420,height=165')">
</td>
</tr>
<tr bgcolor="#E8F1FF">
<td align="right"></td>
<td><input name="bookpic2" type="text" id="bookpic2" size="30">
<input type="button" name="Submit2" value="上传大图片" onClick="window.open('../upload_flash.asp?formname=myform&editname=bookpic2&uppath=bookpic&filelx=jpg','','status=no,scrollbars=no,top=20,left=110,width=420,height=165')">
</td>
</tr>
<tr bgcolor="#E8F1FF">
<td align="right">奖品说明: </td>
<td><textarea name="bookcontent" cols="46" rows="8" id="bookcontent"></textarea></td>
</tr>
<tr bgcolor="#E8F1FF">
<td height="30"></td>
<td><input type="submit" name="Submit" value="添加保存">
<input name="xianshi" type="checkbox" id="xianshi" value="1">
显示(指让不让用户在前台看到)
</td>
</tr>
</table>
</td>
</form>
</tr>
</table>
<br>
<!--#include file="copyright.asp"-->
</body>
</html>
<SCRIPT LANGUAGE="JavaScript">
<!--
function checkkk()
{
if(checkspace(document.myform.bookname.value)) {
document.myform.bookname.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 + -