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

📄 doadd.asp

📁 网络程序-学生个人信息管理系统。以学生个人用户实际需要为中心
💻 ASP
字号:
<!--#include file="../login/checklogin.asp"-->
<!--#include file="../database/opendb.asp"-->
<%
  cvalidatecode=request("validatecode")
if session("validatecode") <> cvalidatecode then '验证码检查
 response.write("<span >验证码错了耶~<a href=""#"" onclick=""history.back()"">回去再试~</a>")
 response.End()
end if 

  title=trim(request("title"))
  fatherid=trim(request("fatherid"))
  content=trim(request("content"))

  strsql="select * from data "  
  rst.open strsql,my_conn,1,3   
  rst.addnew 
  rst("name")=title
  rst("content")=content
  rst("fatherid")=fatherid
  rst("date")=now()
  rst.update
%>
<!--#include file="../database/closedb.asp"-->
<%response.redirect "../output/body.asp"%>

⌨️ 快捷键说明

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