求助ASP相关的中英文翻译!!!

来源:百度知道 编辑:UC知道 时间:2024/05/23 14:43:17
用全部的分数悬赏ASP相关的中英文翻译(最好是技术文章,不是ASP.NET哦),毕业设计用,希望好心人能提供,3000字左右就够了。
小女子不胜感激!
邮箱:berry.48@126.com(麻烦发到邮箱,谢谢^0^)

<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="Connections/EmpMain.asp" -->
<!--#include file="asp_lib/md5.asp" -->
<%
' *** Validate request to log in to this site.
MM_LoginAction = Request.ServerVariables("URL")
If Request.QueryString<>"" Then MM_LoginAction = MM_LoginAction + "?" + Request.QueryString
MM_valUsername=CStr(Request.Form("UserName"))
If MM_valUsername <> "" Then
MM_fldUserAuthorization=""
MM_redirectLoginSuccess="EmpMain_FrameAll.asp"
MM_redirectLoginFailed="index.asp"
MM_flag="ADODB.Recordset"
set MM_rsUser = Server.CreateObject(MM_flag)
MM_rsUser.ActiveConnection = MM_EmpMain_STRING
MM_rsUser.Source = "SELECT UserName, password,ID"
If MM_fldUserAuthorization <> "" Then MM_rsUser.Source = MM_rsU