迁移到 IIS 导致用户控件内的中继器消失

发布于 2024-12-22 23:23:38 字数 329 浏览 0 评论 0原文

该项目作为 Web 应用程序运行良好 当我将其移至 IIS 时,用户控件的转发器不再工作 它从网站上消失了

转移到 IIS 之前它工作得很好

在后面的代码中

我们有 FetchData

...
                reapGallery.DataSource = pagedProducts;
                reapGallery.DataBind();

因为转发器是空的它永远不会显示

问题应该是 IIS 和 SQL 之间的安全问题、添加用户等等

The project was working great as a Web Application
when I moved it to IIS the User Control's Repeater doesn't work anymore
and it is disappeared from the site

It was working great before moving to IIS

in the code behind

We have FetchData

...
                reapGallery.DataSource = pagedProducts;
                reapGallery.DataBind();

because the repeater is empty it never will be shown

The problem should be the security issues between IIS and SQL , Adding users or so

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

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

发布评论

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

评论(1

雨后彩虹 2024-12-29 23:23:38

将路径更改为:

<link rel="stylesheet" href="../Project/CSS/styleGallery.css" 
    type="text/css" media="screen">
<link rel="stylesheet" id="BxCss" href="../Project/CSS/cbox.css" 
    type="text/css" media="all">
<%@ Register Src="~/Project/CC/Gallery.ascx" TagPrefix="uc" TagName="Gallery" %>

<uc:Gallery runat="server" ID="iGallery" />

Change paths to:

<link rel="stylesheet" href="../Project/CSS/styleGallery.css" 
    type="text/css" media="screen">
<link rel="stylesheet" id="BxCss" href="../Project/CSS/cbox.css" 
    type="text/css" media="all">
<%@ Register Src="~/Project/CC/Gallery.ascx" TagPrefix="uc" TagName="Gallery" %>

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