当前位置:编程学习 > asp >>

网络考场(8)(转)taddstudent.asp

<%@ Language=VBScript %>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY>
<%
if Request.ServerVariables("http_method")="POST" and Request.Form("submit")<>"跳到" then
    '如果按POST方式提交表单内容
    set conn=server.CreateObject("adodb.connection")
    conn.ConnectionString="dsn=testsys"
    conn.Open
    strstid=Request.Form("stid")
    strstname=Request.Form("stname")
    if Request.Form("submit")="加入" then
    '如果执行加入学生信息的请求
        strsql="select * from studentinfo where stid='" & strstid & "'"
        '根据要加入的学生学号查询数据库的表studentinfo中是否存在该学生的记录
        set mrs1=conn.Execute(strsql)
        if    not(mrs1.BOF and    mrs1.EOF) then
        '如果要加入的学生学号已存在,则提示重新输入信息        
       Response.Write "该学号已经存在,请重新输入学生信息<br>"
       Response.Write "<a href=taddstudent.asp?page=" & request("page") & "&stname=" & strstname & "&stid=" & strstid & ">返回</a>"
        else
        '如果要加入的学生学号不存在,则向数据库中加入该学生信息    
补充:asp教程,高级应用
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,