1
我有以下按鈕如何使用onclick事件發送值?
<asp:ImageButton ID="button1" runat="server"
ImageUrl="~/image.jpg"
CommandName = "id"
CommandArgument = "1"
onclick="button1_Click"
/>
,並在後面
protected void button1_Click(object sender, ImageClickEventArgs e)
{
Response.Write(e.commandName);
}
這個代碼不工作!,所以我的問題是如何獲得價值frombutton控制?