网站作为 IIS 7 中的应用程序

发布于 2025-01-04 09:34:23 字数 364 浏览 2 评论 0原文

我正在使用 ScrewTurn Wiki。它是预编译版本。因此,当我尝试在 IIS 上作为我的宠物网站下的应用程序运行时,它会出现错误,例如无法找到类型或命名空间名称“AddressInfo”。但是当我将它作为网站运行时,它工作得很好。我在哪里做错了任何需要添加的参考或我错过的事情。

public class ProfileCommon : System.Web.Profile.ProfileBase 
 { public virtual AddressInfo BillingAddress 
        { get { return ((AddressInfo)(this.GetPropertyValue("BillingAddress"))); 

I am working with ScrewTurn Wiki. It is pre-complied Version. So When I am tring to run on IIS as Application under my pet website than it gives error like The type or namespace name 'AddressInfo' could not be found. But When I am run it as website than it works fine. Where I am doing mistake any reference to be add or thing i missed.

public class ProfileCommon : System.Web.Profile.ProfileBase 
 { public virtual AddressInfo BillingAddress 
        { get { return ((AddressInfo)(this.GetPropertyValue("BillingAddress"))); 

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

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

发布评论

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

评论(1

野鹿林 2025-01-11 09:34:23

我已经发布了 WIKI 并放置在我的网站下。现在在iis 7中,我已经在我的网站下为WIKI制作了Web应用程序。它运行良好。但是 WIKI 的 Web.config 出现错误,为了解决这个问题,我更改了禁用 sessionState 配置并添加

<clear/>
<add name="Session" type="System.Web.SessionState.SessionStateModule"/>

到 httpModules 下。

现在它作为我网站的子文件夹。

I have published the WIKI and placed under my website. Now in iis 7, I have made web application for WIKI under my website. It is working fine. But Web.config of WIKI is given error, for resolving I have changed with disable sessionState configuration and added

<clear/>
<add name="Session" type="System.Web.SessionState.SessionStateModule"/>

under httpModules.

Now it works as sub folder of my website.

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