javascriptを使用したページの読み込み時に、ボタンを無効にします。
あれは
protected void Page_Load(object sender, EventArgs e){
{
btnExcel.Attributes.Add("onclick", " this.disabled = true; " +
ClientScript.GetPostBackEventReference(btnExcel, null) + ";");
}
今、私はボタンコントロールを有効にすることです
protected void btnExcel_Click(object sender, EventArgs e)
{
1. Rpt.ExportToHttpResponse(ExportFormatType.Excel, Response, true, "Project Summary Report");
2. btnexcel.enable=true;
}
btn_click
イベントで1つのステートメントを実行した後、
なぜ2ステートメントが実行されないのですか?
2つのステートメントが実行されない場合、ボタンコントロールが有効になりませんか?