首页 > 网站 > 建站经验 > 正文

asp调用二级分类代 码

2019-11-02 15:30:34
字体:
来源:转载
供稿:网友

<%
 dim conn
 dim connstr
 dim db
 db="../data/1du.asp"
 Set conn = Server.CreateObject("ADODB.Connection")
 connstr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath(db)
 conn.Open connstr
 
 sub closedatabase()
   conn.close
        set conn=Nothing
    End sub
%>
<title>错误提示</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<%
dim founderr,errmsg
founderr=false
errmsg=""

if Request.form("MM_insert") then

if request.form("action")="newp" then
sql="select * from p_class_small"
set rs=server.createobject("adodb.recordset")
rs.open sql

神马影院[www.aikan.tv/special/shenmayingyuan/]
,conn,1,3
rs.addnew
dim p_small_type,p_type
p_small_type=trim(replace(request.form("p_small_type"),"'",""))
p_type=trim(replace(request.form("p_type"),"'",""))
p_small_type_e=trim(replace(request.form("p_small_type_e"),"'",""))
if p_small_type="" then
  founderr=true
  errmsg=errmsg+"<br>"+"<li>你必须输入栏目名称名称!"
else
  rs("p_small_type")=p_small_type
End if
if p_type="" then
  founderr=true
  errmsg=errmsg+"<br>"+"<li>你必须选择一级分类!"
else
  rs("p_type")=p_type
End if
'由P_type得到p_type_e
   sql_p="select p_type_e from p_class where p_type='"&p_type&"'"
            set rs_p=server.createobject("adodb.recordset")
            rs_p.open sql_p,conn,1,1
   if Not(rs_p.BOF and rs_p.EOF) then
      p_type_e=rs_p("p_type_e")
   end if
   rs_p.close
   set rs_p=nothing 
rs("p_type_e")=p_type_e
rs("p_small_type_e")=p_small_type_e
if Not founderr then
rs.update
rs.close
set rs=Nothing
  closedatabase
response.redirect "admin_p_small.asp"
else
Call diserror()
response.End
End if
End if

if request.form("action")="editp" then
if request.Form("id")="" then
  founderr=true
  errmsg=errmsg+"<br>"+"<li>你必须指定操作的对象!"

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表