【发布时间】:2016-03-20 07:37:11
【问题描述】:
我最近刚接触 ASP,我似乎无法让它工作
<html>
<body>
<form action="test.asp" method="post">
<input type="text" name="text" />
<input type="submit" value="submit" />
</form>
<%
dim x
x=Request.Form("text")
Responce.Write(x)
%>
</body>
</html>
显示文本框和提交按钮,但显示此错误且此 ASP 不起作用。我不确定我的代码或 IIS 是否有问题。对此的任何帮助将不胜感激
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.
【问题讨论】:
-
你应该在编码时真正激活错误,错别字很常见...... :) 见stackoverflow.com/questions/1453791/…
标签: iis asp-classic