第二个文件:If User!="张胖胖" then ,在ASP里,"不等于"不是用"!="来表示的,而是用"<>"来表示。因此要改成:IF User<>"张胖胖" then
还有if Pass!="1234567" then 同理也要改成if Pass<>"1234567" then
另外在第二个文件里,最后的endif也是不正确的,应该改成"end if",注意end与if中间有个空格
你这个是asp.net(c#)如果是asp应该是这样
<%@ Page Language="vbscript" %>
<html>
<head>
<title>my first asp.net page!</title>
</head>
<body>
</body>
</html>
<%response.write("hello asp.net !this is my first asp.net pages!")%>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)