windows7搜索不到iis

windows7搜索不到iis,第1张

1、首先,先确定是不是iis的快捷方式被误删或丢失了:先新建一个快捷方式;

2、然后在输入框中输入“%windir%\system32\inetsrv\InetMgr.exe”后点击“下一步”至最后看是否可行。

输入“%windir%\system32\inetsrv\InetMgr.exe”

一个ASP的登陆页面 为什么一遇到数据库的问题就出错,谢谢!

<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312" />

<title>登录</title>

</head>

<body>

<div align="center">

<%

dim strUserName

dim strPassword

dim conn

dim rs

dim sql

strUserName=Request.Form("Username")

strPassword=request.Form("code")

if strUserName="" then

response.Redirect"Login.html"

end if

if strPassword="" then

response.Redirect"Login.html"

end if

set conn=server.createobject("adodb.connection")

conn.open "driver={microsoft access driver (*.mdb,*.accdb)}dbq="&server.mappath("User.accdb")

sql="select User_name from Users where(User_name="&strUserName&" and User_password="&strPassword&")"

set rs=server.createobject("adodb.recordset")

rs.open sql,conn,1,1

if not rs.eof then

session("Username")=strUserName

response.Write("登陆成功!")

else

response.Write("登录失败!")

end if

set rs=nothing

conn.close

set conn=nothing

%>

</div>

</body>

</html>

第二试一下response.write server.mappath("User.accdb")

看看是否报错


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12042429.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存