ImageButtonイベントがイメージを見つけることができない場合は、正常に動作しませんか?ページがarrow.png、画像のクリック作品を見つけたが、それはそれを見つけられない場合は、それが動作しない場合ImageButtonにImageがない場合、ImageButtonイベントは発生しません。
imageLink = new ImageButton();
imageLink.ImageUrl = "~/images/arrow.png";
:たとえば、私は次のコードを持っていると仮定します。
これらのイメージは動的に作成され、CommandName、CommandArgumentおよびClick Handlerが割り当てられます。
void imageLink_Click(object sender, ImageClickEventArgs e)
{
ImageButton button = (ImageButton)sender;
Detail oDetail = new Detail();
switch(button.CommandName)
{
case "Band":
oDetail.Band = button.CommandArgument;
break;
case "State":
oDetail.State = button.CommandArgument;
break;
}
Session["Page2"] = oDetail;
Response.Redirect("~/Page2.aspx");
}
は残念ながら、私は答えを持っていないが、私は上のFirefoxでhapppeningこのまったく同じことを見てきました。 NETサイト。これについての説明があるかどうか知ることは、常に興味があります。 – Dhana