-2

我看到很多关于这个话题的讨论。尽管示例和期望的结果总是非常具体和专业。对此的任何方向表示赞赏。在我的代码中:我是动态生成的图像和图像 URL。并在面板中添加此图像控件。我想将图像 url 放在 temp() 的参数中,但我不明白我该怎么做

<td align="center" colspan="2" style="height: 200px; ">
     <asp:Panel ID="Panel_pic1" runat="server">
     </asp:Panel> 
</td>

代码背后:

var lasToThirteenthUploaded = ds.Tables["title"].Rows[ds.Tables["title"].Rows.Count - 13]["id"].ToString();
int ID13 = Convert.ToInt16(lasToThirteenthUploaded);//row.Field<int>("video_id");
Image img13 = new Image();
img13.ID = "image" + ID13;
string title13 = ds.Tables["title"].Rows[ds.Tables["title"].Rows.Count - 13]["title"].ToString();//row.Field<string>("title");
img13.ImageUrl = ds.Tables["title"].Rows[ds.Tables["title"].Rows.Count - 13]["path"].ToString();// ("image_path");
Panel_pic13.Controls.Add(img13);

protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
{
    if (Session["Name"] == null)
    {

    }
    else
    {
        temp();
    }
}
protected void temp()
 {

 }
4

1 回答 1

0

从这里传递价值

else
{
temp(img13.ImageUrl);
}

并抓住它

void temp(string imageurl)
{
}

你也可以使用 protected void temp(string imageurl)

于 2013-04-15T16:48:28.410 回答