Web 開発で最も面倒なことの 1 つは、フォームの「Enter キー」の扱いです。「Enter キー」は、フォームを送信するときにユーザーの好みになっています。ユーザーに送信ボタンを提供していますが、最も簡単で直接的な方法は、テキストを入力して Enter キーを押して送信を完了することです
。ASP.NET 2.0 は、これに対する優れたソリューションを提供します。イベントを発生させたいボタン コントロールの ID に「defaultbutton」属性を割り当てるだけです。
「defaultbutton」はフォームレベルとパネルレベル(
実行パネルの以下のサンプルコードはフォームと4つのパネルがあり、その順にボタンが配置されています。 。
注意: テキスト ボックスボタンのクリックに対応するサンプル イベントは次のとおりです。
protected void Button1_Click(オブジェクト送信者、EventArgs e)
{
Response.Write(Button1.Text);
}
protected void Button2_Click(オブジェクト送信者、EventArgs e)
{
Response.Write(Button2.Text);
}
protected void Button3_Click(オブジェクト送信者、EventArgs e)
{
Response.Write(Button3.Text);
}
protected void Button4_Click(オブジェクト送信者、EventArgs e)
{
Response.Write(Button4.Text);
}
protected void btn1_Click(オブジェクト送信者, EventArgs e)
{
Response.Write(btn1.Text);
}
protected void Button5_Click(オブジェクト送信者、EventArgs e)
{
Response.Write(Button5.Text);
}
原文: http://forums.asp.net/thread/1270048.aspx
原文: http://forums.asp.net/thread/1270048.aspx
コードをダウンロードする際の
「エントリーキー」の訳し方がよくわかりません
。アドバイスをお願いします。
ありがとう