IIS Express 和经典 ASP

发布于 2024-10-21 13:16:03 字数 235 浏览 1 评论 0原文

我正在尝试在 Windows XP 下的 IIS Express 上设置一个经典的 ASP 站点。我能够安装并运行 iis 以及设置站点,但是当我尝试浏览到 ASP 页面时,我得到的只是:

íP÷Pèö‚le”_/index.asp18 

有人在 IISExpress 中遇到过这个问题吗?我认为这是一个权限问题,但我不确定我需要设置什么以及为哪个用户设置。

任何帮助表示赞赏。

I'm trying to get a classic ASP site set up on IIS Express under Windows XP. I am able to get iis setup and running as well as setting up the site, but when I try to browse to an asp page all I get is:

íP÷Pèö‚le”_/index.asp18 

Has anyone come across this problem with IISExpress? I'm thinking it's a permissions thing, but I'm not sure what I need to set and for which user.

Any help is appreciated,.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

复古式 2024-10-28 13:16:03

好的,我们已经有了这个,这就是我找到解决方案的方法。在我们的例子中,我认为它链接到父路径,但也可能是会话状态...

浏览到 C:\Documents and Settings\$your用户名$\My Documents\IISExpress\config

打开 applicationHost.config

找到 部分

部分更改为以下内容...
默认情况下,它只有缓存和空限制位,但可以随意调整您不需要的任何参数。

<asp 
     enableParentPaths="true" 
     bufferingOn="true" 
     errorsToNTLog="true" 
     appAllowDebugging="true" 
     appAllowClientDebug="true" 
     scriptErrorSentToBrowser="true">

     <session allowSessionState="true" />
     <cache diskTemplateCacheDirectory="%TEMP%\iisexpress\ASP Compiled Templates" />
     <limits />
</asp>

保存并重新启动iis express。

OK we've had this and this is how I've found a solution.. In our case I think it was linked to parent paths but could have been session state too...

Browse to C:\Documents and Settings\$your user name$\My Documents\IISExpress\config

Open applicationHost.config

Find the <system.webServer> section

Change the <asp> section to the following…
By default it only had the cache and empty limits bits but feel free to adjust any parameters you don't want.

<asp 
     enableParentPaths="true" 
     bufferingOn="true" 
     errorsToNTLog="true" 
     appAllowDebugging="true" 
     appAllowClientDebug="true" 
     scriptErrorSentToBrowser="true">

     <session allowSessionState="true" />
     <cache diskTemplateCacheDirectory="%TEMP%\iisexpress\ASP Compiled Templates" />
     <limits />
</asp>

Save and restart iis express.

佞臣 2024-10-28 13:16:03

我不确定这是否是权限问题。您能翻译一下错误消息“íP÷Pèö‚le”_/index.asp18”吗?
如果看起来像权限问题,可能您需要向当前用户提供权限(IIS Express 作为当前登录用户运行)。

I am not sure if this is permissions issue or not. Could you translate the error message "íP÷Pèö‚le”_/index.asp18".
If it looks like permissions issue, probably you need to provide permission to current user (IIS Express runs as current logon user).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文