在windows 2003服务器上以32位模式设置C# http模块
我在 Windows Server 2003 上用经典 Asp 设置了一个站点,我想在该站点上运行一些用 C# 编写的 HTTP 模块。
这就像将模块放在子目录中并将 web.config 粘贴到根目录中一样简单吗?这会破坏经典 ASP 的东西吗?
i've got a site set up in Classic Asp on Windows Server 2003 and i'd like to run some HTTP module written in C# on the site when it gets hit.
Is this as simple as putting the module in a subdirectory and sticking a web.config in root? Will that disrupt the Classic ASP stuff?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能太复杂了,可能有更简单的方法,但我认为你不能在同一个应用程序中运行 ASP 和 .NET,所以你可以将 c# 放在一个文件夹中,创建一个指向它的虚拟目录并使用ajax 从 ASP(客户端)调用它。或者只是为其创建另一个网站。只是一个想法。
this might be too convoluted and there may be a much easier way, but I think you can't run ASP and .NET in the same application, so you could put the c# in a folder, create a virtual directory pointing to it and use ajax to call it from your ASP (client side). Or just create another site for it. Just a thought.