📄 sch_changename.asp
字号:
<!--#include file="../Include/Class_Conn.asp" -->
<!--#include file="../Include/Class_Main.asp" -->
<!--#include file="../Public/School_Cookies.asp" -->
<%
Dim Schid,Username,Tmp,Temp(3)
Dim Cmd,Rs,Action
Action = Request.QueryString("action")
If Action = "edit" Then Call Edit_Submit() '//调用保存数据的函数
'//获取会员登陆的标记
If Not IsArray(Session("School")) Then
Response.write "<script>alert('-登录后才能进行该操作!-');location.href='../Public/MemberLogin.asp';</script>"
Else
Username = Session("School")(0)
Schid = Session("School")(2)
End if
'//调用存储过程
Set Cmd = Server.CreateObject("ADODB.Command")
Cmd.ActiveConnection = Conn
Cmd.CommandText = "Sch_Account"
Cmd.CommandType = 4
Cmd.Parameters.Append Cmd.CreateParameter("@Schid",200,1,30)
Cmd.Parameters("@Schid") = Schid
Set Rs = Cmd.Execute
If Rs.Eof Then
CloseRs
Set Cmd = Nothing
CloseDB
Response.write "没有找到会员资料!"
Response.End()
End if
Tmp = Rs.GetRows() '//将数据填充到数组
'//0院校名,1院校性质
'//如 Tmp(0,0) 表示院校名称
CloseRs
Set Cmd = Nothing
'//功能代码
SchoolName = Tmp(0,0)
Properity = Tmp(1,0)
If School_Memo <> "" Then School_Memo = Replace(School_Memo,"<br>",Chr(13))
SchoolType = Cls_SchoolType(Properity)
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href="../Css/Style.css" type=text/css rel=stylesheet>
<title><%= Cls_WebName %> -- 院校会员管理中心 -- 更改用户名</title>
</head>
<script language="JavaScript" >
function theForm_check()
{
if (document.theForm.oldname.value=="")
{
alert("请输入原用户名!");
document.theForm.oldname.focus();
return false;
}
if (document.theForm.newname.value=="")
{
alert("请输入新用户名!");
document.theForm.newname.focus();
return false;
}
}
</script>
<body>
<table width="768" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center" bgcolor="#FFFFFF">
<!--#include file="../Include/Header.asp" -->
<table width="760" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td height="4"></td>
</tr>
<tr>
<td height="1" bgcolor="#eeeeee"></td>
</tr>
</table>
<table width="760" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td width="175">
<!--#include file="../Public/School_Left.asp" -->
</td>
<td width="5"> </td>
<td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25"><img src="../Images/icon.gif" width="11" height="11" align="absmiddle">
<%= SchoolName %> [<%= SchoolType %>]</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<form action="?action=edit" name="theForm" method="post" onSubmit="return theForm_check()">
<tr>
<td><table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="eeeeee">
<tr>
<td bgcolor="#FFFFFF"><table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="2"></td>
</tr>
</table>
<table width="99%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="eeeeee">
<tr>
<td height="25" bgcolor="f5f5f5"><b><font color="#000000"> 更改用户名</font></b></td>
</tr>
</table>
<table width="99%" border="0" align="center" cellpadding="2" cellspacing="1">
<tr>
<td width="22%" height="25" align="right"><STRONG><FONT
color=#ff6600>*</FONT></STRONG> 原用户名:</td>
<td height="25"> <input name="oldname" type="text" id="oldname" size="15" maxlength="30"></td>
</tr>
<tr bgcolor="f9f9f9">
<td width="22%" height="25" align="right"><STRONG><FONT
color=#ff6600>*</FONT></STRONG> 新用户名:</td>
<td height="25"> <input name="newname" type="text" id="newname" size="15" maxlength="30">
</td>
</tr>
</table>
<table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="2"></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td height="40" align="center"><input type="submit" name="submit" value=" 提 交 " style="height:30px;">
</td>
</tr>
</form>
</table></td>
</tr>
</table>
<table width="760" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="1" bgcolor="#eeeeee"></td>
</tr>
</table></td>
</tr>
</table>
<table width="768" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center" bgcolor="#FFFFFF">
<!--#include file="../Include/Footer.asp" -->
</td>
</tr>
</table>
</body>
</html>
<%
Sub Edit_Submit()
Schid = Session("School")(2)
Password = Session("School")(1)
OldName = Replace_Text(Request.Form("OldName"))
NewName = Replace_Text(Request.Form("NewName"))
'查找有没有该用户存在
SQL = "Select UserName From [pH_School_Base] Where UserName='"&OldName&"'"
Set Rs = Conn.Execute(SQL)
If Rs.Eof Then
Response.write "<script>alert('对不起!没有找到该用户名...');history.back(-1);</script>"
Response.End()
End if
Rs.Close
'查找新用户名有没有和其他用户名相同
SQL = "Select UserName From [pH_School_Base] Where UserName='"&NewName&"'"
Set Rs = Conn.Execute(SQL)
If Not Rs.Eof Then
Response.write "<script>alert('对不起!新用户名已经被其他用户使用...');history.back(-1);</script>"
Response.End()
End if
Rs.Close
'更新用户名
Conn.Execute("Update [pH_School_Base] Set Username='"&NewName&"' Where Username='"&OldName&"'")
'更改Session值
Temp(0) = NewName
Temp(1) = Password
Temp(2) = Schid
Session("School") = Temp
Response.write "<script>alert('用户名修改修改成功!');location.href='Sch_ChangeName.asp';</script>"
End Sub
'//关闭数据库连接
CloseDB
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -