【发布时间】:2012-02-26 21:37:05
【问题描述】:
我正在使用闪烁 API 进行一些测试,但我在代码中更改了一些控件后遇到了一个奇怪的问题。
当我第一次尝试请求图像时,我将它们存储在图像中,一切都很好,但我想对图像做其他事情,所以我尝试使用 ImageButton 类,但我得到一个异常,它必须运行 =服务器”属性。
我以编程方式添加所有控件。
对我来说奇怪的是 Image 类没有给出任何异常,而是使用从他继承的类。
所以我的问题是:是否可以通过 c# 代码添加并检查控件是否具有 runat="server" 属性?
(对不起我的英语)
这是我的一些代码:
protected void Page_Load(object sender, EventArgs e)
{
string key = "*****************";
string secret = "***********";
MyFlicker myFlicker = new MyFlicker(key, secret);
int photoCount = myFlicker.coll.Count;
try
{
string[] urls = myFlicker.GetPhotosURLS();
string[] desc = myFlicker.GetPhotosDescreptions();
string[] Titels = myFlicker.GetPhotosTitle();
Panel[] panels = new Panel[photoCount];
ImageButton[] images = new ImageButton[photoCount];
Label[] descreptions = new Label[photoCount];
Label[] titles = new Label[photoCount];
for (int i = 0; i < photoCount; i++)
{
panels[i] = new Panel();
images[i] = new ImageButton();
descreptions[i] = new Label();
titles[i] = new Label();
titles[i].Text = Titels[i] + ":כותרת התמונה";
images[i].ImageUrl = urls[i];
if (descreptions[i] != null)
descreptions[i].Text ="תיאור התמונה: " + desc[i];
else
descreptions[i].Text = "descreption was not found!";
panels[i].ID = "panel" + i;
images[i].ID = "image" + i;
descreptions[i].ID = "des" + i;
titles[i].ID = "titles" + i;
panels[i].Controls.Add((Label)titles[i]);
panels[i].Controls.Add((Label)descreptions[i]);
panels[i].Controls.Add((Image)images[i]);
this.Controls.Add((Panel)panels[i]);
}
}
catch (Exception ex)
{
Response.Write(ex.Message);
}
}
这里是apsx:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Copy_of_galleryControlTest_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>
【问题讨论】:
-
哪行代码准确生成了您描述的错误?
-
你为什么不用中继器什么的?
-
@ShadowWizard 它没有告诉我一些 reson 以及它自己在 try and catch 中的代码。
-
99% 你得到的错误不是直接因为你发布的代码。请同时发布您的
.aspx标记,我们将拭目以待。 (添加后通知,我不会定期查看我访问的每个帖子) -
@ShadowWizard 我添加了 aspx 代码(感谢您尝试帮助我)。