【发布时间】:2016-02-09 05:12:42
【问题描述】:
好的,下午好。
我刚开始使用 ASP。 在 php 我做这样的事情
<?php
If(isset($_POST["submit"]))
{
echo "You clicked me yeh?";
}
?>
工作没有问题,现在我尝试为 ASP 翻译相同的内容,我做了类似的事情
<html>
<head>
<title>testHome in ASP</title>
<body>
<%
if Request.Form("submit") ="test" then
Response.Write("Ok Mate You Just Clicked Me!")
%>
<form name = "superform" id="superform" method="post" action="idc.asp">
<input type="submit" name="submit" value="test"/>
</form>
</body>
</head>
</html>
相反,我得到了这个超级烦人的错误。
An error occurred on the server when processing the URL. Please contact the system administrator.
If you are the system administrator please click here to find out more about this error.
请问这里的错误是什么?
【问题讨论】:
-
你试过点击它告诉你点击的地方吗?
-
当然是的,它把我带到这里iis.net/learn/application-frameworks/…
标签: asp-classic