gpt4 book ai didi

c# - 经过一段空闲时间后,图像未从数据库加载

转载 作者:行者123 更新时间:2023-11-29 19:32:58 24 4
gpt4 key购买 nike

我的问题是当我点击产品页面(在下面的 URL 中)时。它工作得很好,但在第一次单击产品菜单的一段空闲时间后,它不会将产品图像从数据库加载到中继器控件。

我正在使用 Bootstrap,而不是使用更新面板。

请参阅以下链接。 MySite(See Product Page On First Time And Click After 5 to 10 minute of idle time)

我的 ASP.net 代码是

<asp:Repeater ID="rptrProduct" runat="server">
<ItemTemplate>
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3">
<div class="recent-work-wrap hovereffect">
<img id="dtimg1" runat="server" class="img-responsive imggray" src='<%#Eval("ImagePath")%>' alt="" style="height: 185px!Important;" />
<div class="overlay1">
<div class="recent-work-inner">
<a id="aimg2" runat="server" href='<%#Eval("ImagePath")%>' rel="prettyPhoto">
<h2>
<%#Eval("ProductName")%></h2>
</a>
<p>
<a id="adtimg1" runat="server" class="preview" href='<%# string.Format("~/BMSubProduct.aspx?pro={0}", Eval("ProductId")) %>'>
<i class="fa fa-eye"></i>View Products</a>
</p>
</div>
</div>
</div>
</div>
</ItemTemplate>
</asp:Repeater>

我只是不明白为什么第一次它不会加载任何图像。

我的 C# 页面代码是

if(!Page.IsPostBack)
{
DataTable dt = DBMaster.getQueryDataTableSchema(query);
if (dt.Rows.Count > 0)
{
string path = GlobalFunction.getPath(1);
NoProducts.Visible = false;
for (int i = 0; i < dt.Rows.Count; i++)
dt.Rows[i]["ImagePath"] = path + Convert.ToString(dt.Rows[i] ["ImagePath"]);
rptrProduct.DataSource = dt;
rptrProduct.DataBind();
}
else
{
NoProducts.Visible = true;
rptrProduct.DataSource = null;
rptrProduct.DataBind();
}
}
public static DataTable getQueryDataTableSchema(string query)
{
try
{
using (IDbConnection con = sq.Open())
{
IDbCommand cmd = con.CreateCommand();
cmd.CommandText = query;
IDbDataAdapter adp = sq.GetAdapter(cmd);
DataSet ds = new DataSet();
adp.FillSchema(ds, SchemaType.Source);
adp.Fill(ds);
con.Close();
return ds.Tables[0];
}
}
catch (Exception ex)
{
return new DataTable();
}
}

page_load 中的母版页代码是

if (!Page.IsPostBack)
{
SQLString.Config = myconnectionString;
}

这里NoProduct => 目前没有可用的产品。

我尝试过很多类似下面的事情:

  1. EnableViewState="true"EnableViewState="false" 均适用于中继器和页面。

  2. 更改 web.config 中的连接字符串

    name="SQLConStr" connectionString="Server=localhost;Database=databasename; Uid = username; Pwd = password; Pooling = false; Connection Timeout = 30"

这里尝试了有和没有连接超时和池的情况。

注意:使用MySQL数据库并使用接口(interface)打开数据库连接。

提前致谢。

最佳答案

EnableViewState="true"

并尝试使用

<asp:Image<asp:HyperLink控件

而不是

img 和带有 runat="server"的标签。

关于c# - 经过一段空闲时间后,图像未从数据库加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41678755/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com