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

📄 news_classaddsmall.asp

📁 冠龙科技企业自助建站系统冠龙科技企业自助建站系统冠龙科技企业自助建站系统冠龙科技企业自助建站系统冠龙科技企业自助建站系统冠龙科技企业自助建站系统冠龙科技企业自助建站系统冠龙科技企业自助建站系统
💻 ASP
字号:
<%@language=vbscript codepage=936 %>
<!--#include file="../inc/Conn.asp"-->
<!--#include file="admin.asp"-->
<!-- #include file="Inc/Head.asp" -->
<%

dim Action,BigClassName,SmallClassName,rs,FoundErr,ErrMsg
Action=trim(Request("Action"))
BigClassName=trim(request("BigClassName"))
SmallClassName=trim(request("SmallClassName"))
if Action="Add" then
	if BigClassName="" then
		FoundErr=True
		ErrMsg=ErrMsg & "<br><li>文章大类名不能为空!</li>"
	end if
	if SmallClassName="" then
		FoundErr=True
		ErrMsg=ErrMsg & "<br><li>文章小类名不能为空!</li>"
	end if
	if FoundErr<>True then
		Set rs=Server.CreateObject("Adodb.RecordSet")
		rs.open "Select * From SmallClass_New Where BigClassName='" & BigClassName & "' AND SmallClassName='" & SmallClassName & "'",conn,1,3
		if not rs.EOF then
			FoundErr=True
			ErrMsg=ErrMsg & "<br><li>“" & BigClassName & "”中已经存在文章小类“" & SmallClassName & "”!</li>"
		else
     		rs.addnew
			rs("BigClassName")=BigClassName
    	 	rs("SmallClassName")=SmallClassName
     		rs.update
	     	rs.Close
    	 	set rs=Nothing
     		call CloseConn()
			Response.Redirect "News_ClassManage.asp"  
		end if
	end if
end if
if FoundErr=True then
	call WriteErrMsg()
else
%>
<script language="JavaScript" type="text/JavaScript">
function checkSmall()
{
  if (document.form2.BigClassName.value=="")
  {
    alert("请先添加大类名称!");
	document.form1.BigClassName.focus();
	return false;
  }

  if (document.form2.SmallClassName.value=="")
  {
    alert("小类名称不能为空!");
	document.form2.SmallClassName.focus();
	return false;
  }
}
</script>
<table width="80%" border="0" cellpadding="0" cellspacing="0" class="border">
  <tr>
    <td align="center" valign="top" class="topbg"><strong>新 闻 类 别 设 置</strong></td>
  </tr>
  <tr>
    <td align="center" valign="top"> <form name="form2" method="post" action="News_ClassAddSmall.asp" onSubmit="return checkSmall()">
          <table width="100%" border="0" align="center" cellpadding="0" cellspacing="1">
            <tr>
              <td height="25" colspan="2" align="center" class="Title"><strong>添加小类</strong></td>
            </tr>
            <tr class="tdbg">
              <td width="155" height="22" bgcolor="#C0C0C0" class="tdbgl"><strong>所属大类:</strong></td>
              <td class=tdbg><select name="BigClassName">
                  <%
	dim rsBigClass
	set rsBigClass=server.CreateObject("adodb.recordset")
	rsBigClass.open "Select * From BigClass_New",conn,1,1
	if rsBigClass.bof and rsBigClass.bof then
		response.write "<option>请先添加文章大类</option>"
	else
		do while not rsBigClass.eof
			if rsBigClass("BigClassName")=BigClassName then
				response.write "<option value='"& rsBigClass("BigClassName") & "' selected>" & rsBigClass("BigClassName") & "</option>"
			else
				response.write "<option value='"& rsBigClass("BigClassName") & "'>" & rsBigClass("BigClassName") & "</option>"
			end if
			rsBigClass.movenext
		loop
	end if
	rsBigClass.close
	set rsBigClass=nothing
	%>
              </select></td>
            </tr>
            <tr class="tdbg">
              <td width="155" height="22" bgcolor="#C0C0C0" class="tdbgl"><strong>小类名称:</strong></td>
              <td class=tdbg><input name="SmallClassName" type="text" size="20" maxlength="30"></td>
            </tr>
            <tr class="tdbg">
              <td width="155" height="22" align="center" bgcolor="#C0C0C0" class="tdbgl">&nbsp;</td>
              <td height="22" align="center" class=tdbg><div align="left">
                  <input name="Action" type="hidden" id="Action3" value="Add">
                  <input name="Add" type="submit" value=" 添 加 ">
              </div></td>
            </tr>
        </table>
        </form></td>
  </tr>
</table>
<%
end if
%>
<br>
<!-- #include file="Inc/Foot.asp" -->

⌨️ 快捷键说明

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