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

📄 xinxigengxin.asp

📁 数据库系统方法 方法
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="../../Connections/jiazheng.asp" -->
<%
' *** Edit Operations: declare variables

Dim MM_editAction
Dim MM_abortEdit
Dim MM_editQuery
Dim MM_editCmd

Dim MM_editConnection
Dim MM_editTable
Dim MM_editRedirectUrl
Dim MM_editColumn
Dim MM_recordId

Dim MM_fieldsStr
Dim MM_columnsStr
Dim MM_fields
Dim MM_columns
Dim MM_typeArray
Dim MM_formVal
Dim MM_delim
Dim MM_altVal
Dim MM_emptyVal
Dim MM_i

MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
If (Request.QueryString <> "") Then
  MM_editAction = MM_editAction & "?" & Server.HTMLEncode(Request.QueryString)
End If

' boolean to abort record edit
MM_abortEdit = false

' query string to execute
MM_editQuery = ""
%>
<%
' *** Update Record: set variables

If (CStr(Request("MM_update")) = "form1" And CStr(Request("MM_recordId")) <> "") Then

  MM_editConnection = MM_jiazheng_STRING
  MM_editTable = "教员详细资料"
  MM_editColumn = "教员编号"
  MM_recordId = "" + Request.Form("MM_recordId") + ""
  MM_editRedirectUrl = "gengxinsuccess.asp"
  MM_fieldsStr  = "Element2|value|Element4|value|Element6|value|Element7|value|Element8|value|Element9|value|Element10|value|Element11|value|Element12|value|Element13|value|Element14|value|Element15|value|Element16|value"
  MM_columnsStr = "姓名|',none,''|年龄|',none,''|职业|',none,''|家庭住址|',none,''|联系电话|',none,''|学历|',none,''|教授科目1|',none,''|教授科目2|',none,''|二外水平|',none,''|空余空间|',none,''|个人说明|',none,''|聘用状态|',none,''|工作表现|',none,''"

  ' create the MM_fields and MM_columns arrays
  MM_fields = Split(MM_fieldsStr, "|")
  MM_columns = Split(MM_columnsStr, "|")
  
  ' set the form values
  For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
    MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i)))
  Next

  ' append the query string to the redirect URL
  If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
    If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
      MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
    Else
      MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
    End If
  End If

End If
%>
<%
' *** Update Record: construct a sql update statement and execute it

If (CStr(Request("MM_update")) <> "" And CStr(Request("MM_recordId")) <> "") Then

  ' create the sql update statement
  MM_editQuery = "update " & MM_editTable & " set "
  For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
    MM_formVal = MM_fields(MM_i+1)
    MM_typeArray = Split(MM_columns(MM_i+1),",")
    MM_delim = MM_typeArray(0)
    If (MM_delim = "none") Then MM_delim = ""
    MM_altVal = MM_typeArray(1)
    If (MM_altVal = "none") Then MM_altVal = ""
    MM_emptyVal = MM_typeArray(2)
    If (MM_emptyVal = "none") Then MM_emptyVal = ""
    If (MM_formVal = "") Then
      MM_formVal = MM_emptyVal
    Else
      If (MM_altVal <> "") Then
        MM_formVal = MM_altVal
      ElseIf (MM_delim = "'") Then  ' escape quotes
        MM_formVal = "'" & Replace(MM_formVal,"'","''") & "'"
      Else
        MM_formVal = MM_delim + MM_formVal + MM_delim
      End If
    End If
    If (MM_i <> LBound(MM_fields)) Then
      MM_editQuery = MM_editQuery & ","
    End If
    MM_editQuery = MM_editQuery & MM_columns(MM_i) & " = " & MM_formVal
  Next
  MM_editQuery = MM_editQuery & " where " & MM_editColumn & " = " & MM_recordId

  If (Not MM_abortEdit) Then
    ' execute the update
    Set MM_editCmd = Server.CreateObject("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_editConnection
    MM_editCmd.CommandText = MM_editQuery
    MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close

    If (MM_editRedirectUrl <> "") Then
      Response.Redirect(MM_editRedirectUrl)
    End If
  End If

End If
%>
<%
Dim Recordset1__MMColParam
Recordset1__MMColParam = "1"
If (Request.QueryString("教员编号") <> "") Then 
  Recordset1__MMColParam = Request.QueryString("教员编号")
End If
%>
<%
Dim Recordset1
Dim Recordset1_numRows

Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_jiazheng_STRING
Recordset1.Source = "SELECT * FROM 教员详细资料 WHERE 教员编号 = " + Replace(Recordset1__MMColParam, "'", "''") + ""
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 1
Recordset1.Open()

Recordset1_numRows = 0
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
<!--
.style1 {
	font-size: 18px;
	color: #000066;
}
.style2 {
	font-size: 16px;
	color: #000033;
}
-->
</style>
</head>

<body>

<div align="center">
  <table width="800"  border="0" cellspacing="1" bgcolor="#006699">
    <tr>
      <td bgcolor="#FFFFFF"><div align="center"><img src="../../image/a0001.jpg" width="800" height="138"></div></td>
    </tr>
    <tr>
      <td height="400" align="center" valign="top" bgcolor="#FFFFFF"><div align="center">
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        
        <form method="POST" action="<%=MM_editAction%>" name="form1">
          <table align="center">
            <tr valign="baseline">
              <td nowrap align="right"><span class="style1">姓名:</span></td>
              <td>
                <input name="Element2" type="text" class="style2" value="<%=(Recordset1.Fields.Item("姓名").Value)%>" size="32">
              </td>
            </tr>
            <tr valign="baseline">
              <td align="right" nowrap class="style1">年龄:</td>
              <td>
                <input name="Element4" type="text" class="style2" value="<%=(Recordset1.Fields.Item("年龄").Value)%>" size="32">
              </td>
            </tr>
            <tr valign="baseline">
              <td align="right" nowrap class="style1">职业:</td>
              <td>
                <input name="Element6" type="text" class="style2" value="<%=(Recordset1.Fields.Item("职业").Value)%>" size="32">
              </td>
            </tr>
            <tr valign="baseline">
              <td align="right" nowrap class="style1">家庭住址:</td>
              <td>
                <input name="Element7" type="text" class="style2" value="<%=(Recordset1.Fields.Item("家庭住址").Value)%>" size="32">
              </td>
            </tr>
            <tr valign="baseline">
              <td align="right" nowrap class="style1">联系电话:</td>
              <td>
                <input name="Element8" type="text" class="style2" value="<%=(Recordset1.Fields.Item("联系电话").Value)%>" size="32">
              </td>
            </tr>
            <tr valign="baseline">
              <td align="right" nowrap class="style1">学历:</td>
              <td>
                <input name="Element9" type="text" class="style2" value="<%=(Recordset1.Fields.Item("学历").Value)%>" size="32">
              </td>
            </tr>
            <tr valign="baseline">
              <td align="right" nowrap class="style1">教授科目1:</td>
              <td>
                <input name="Element10" type="text" class="style2" value="<%=(Recordset1.Fields.Item("教授科目1").Value)%>" size="32">
              </td>
            </tr>
            <tr valign="baseline">
              <td align="right" nowrap class="style1">教授科目2:</td>
              <td>
                <input name="Element11" type="text" class="style2" value="<%=(Recordset1.Fields.Item("教授科目2").Value)%>" size="32">
              </td>
            </tr>
            <tr valign="baseline">
              <td align="right" nowrap class="style1">二外水平:</td>
              <td>
                <input name="Element12" type="text" class="style2" value="<%=(Recordset1.Fields.Item("二外水平").Value)%>" size="32">
              </td>
            </tr>
            <tr valign="baseline">
              <td align="right" nowrap class="style1">空余空间:</td>
              <td>
                <input name="Element13" type="text" class="style2" value="<%=(Recordset1.Fields.Item("空余空间").Value)%>" size="32">
              </td>
            </tr>
            <tr>
              <td align="right" valign="top" nowrap class="style1">个人说明:</td>
              <td valign="baseline">
                <textarea name="Element14" cols="34" rows="6"><%=(Recordset1.Fields.Item("个人说明").Value)%></textarea>
              </td>
            </tr>
            <tr>
              <td align="right" valign="top" nowrap class="style1">聘用状态:</td>
              <td valign="baseline">
                <table align="left">
                  <tr>
                    <td>
                      <input type="radio" value="未聘用" name="Element15" <%If (CStr("未聘用") = CStr(Recordset1.Fields.Item("聘用状态").Value)) Then Response.Write("CHECKED") : Response.Write("")%>>
                      <span class="style2">未聘用</span>                    
                    <td><input type="radio" value="已聘用" name="Element15" <%If (CStr("已聘用") = CStr(Recordset1.Fields.Item("聘用状态").Value)) Then Response.Write("CHECKED") : Response.Write("")%>>
                      <span class="style2">已聘用                  </span></tr>
                  <tr>
                    <td>
                      <td>        
                  </tr>
              </table></td>
            </tr>
            <tr>
              <td align="right" valign="top" nowrap class="style1">工作表现:</td>
              <td valign="baseline">
                <table align="left">
                  <tr>
                    <td>
                      <input <%If (CStr("及格") = CStr("及格")) Then Response.Write("CHECKED") : Response.Write("")%> type="radio" value="及格" name="Element16" >
                      及格
                    <td><input <%If (CStr("及格") = CStr("一般")) Then Response.Write("CHECKED") : Response.Write("")%> type="radio" value="一般" name="Element16" >
                      一般                  </tr>
                  <tr>
                    <td><input <%If (CStr("及格") = CStr("良好")) Then Response.Write("CHECKED") : Response.Write("")%> type="radio" value="良好" name="Element16" >
                      良好                      <td><input <%If (CStr("及格") = CStr("优秀")) Then Response.Write("CHECKED") : Response.Write("")%> type="radio" value="优秀" name="Element16" >
优秀                  </tr>
                  <tr>
                    <td>
                      <td>        
                  </tr>
                  <tr>
                    <td>
                      <td>        
                  </tr>
              </table></td>
            </tr>
            <tr valign="baseline">
              <td nowrap align="right">&nbsp;</td>
              <td>
                <input name="提交" type="submit" class="style2" value="更新记录">
                <input name="Submit" type="reset" class="style2" value="重新重置">
</td>
            </tr>
          </table>
          <input type="hidden" name="MM_update" value="form1">
          <input type="hidden" name="MM_recordId" value="<%= Recordset1.Fields.Item("教员编号").Value %>">
        </form>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
      </div></td>
    </tr>
  </table>
</div>
</body>
</html>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>

⌨️ 快捷键说明

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