网站作为 IIS 7 中的应用程序
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经发布了 WIKI 并放置在我的网站下。现在在iis 7中,我已经在我的网站下为WIKI制作了Web应用程序。它运行良好。但是 WIKI 的 Web.config 出现错误,为了解决这个问题,我更改了禁用 sessionState 配置并添加
到 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
under httpModules.
Now it works as sub folder of my website.