ASP.NET ACCESS C# 我从库中读的图片,显示不出来,但是datalist中的小图可以,点击显示大图就不行了
输出的ID也对,产品页面中的:<asp:ImageID="Image1"runat="server"/>cs文件:publicpartialclassProductD:S...
输出的ID也对,
产品页面中的:<asp:Image ID="Image1" runat="server" />
cs文件:public partial class ProductD : System.Web.UI.Page
{
ProductT pt = new ProductT();
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
selcontent();
}
}
void selcontent()
{
if (Request.QueryString["pid"] != null)
{
int myint;
if (int.TryParse(Request.QueryString["pid"].ToString(), out myint))
{
Response.Write(myint);
ProductT p = new ProductT(myint);
Image1.ImageUrl = p.Pic;
Label1.Text = p.Title;
Label2.Text = p.Content;
}
}
}
} 展开
产品页面中的:<asp:Image ID="Image1" runat="server" />
cs文件:public partial class ProductD : System.Web.UI.Page
{
ProductT pt = new ProductT();
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
selcontent();
}
}
void selcontent()
{
if (Request.QueryString["pid"] != null)
{
int myint;
if (int.TryParse(Request.QueryString["pid"].ToString(), out myint))
{
Response.Write(myint);
ProductT p = new ProductT(myint);
Image1.ImageUrl = p.Pic;
Label1.Text = p.Title;
Label2.Text = p.Content;
}
}
}
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询