次のように、asp.netのページ読み込み時にテキストボックスにフォーカスを設定しようとしています
protected void Page_Load(object sender, EventArgs e)
{
try
{
if (!IsPostBack)
{
// fillUnitType();
//
fillLastCode();
txt_Grn_Date.Text = System.DateTime.Now.ToString("dd-MM-yyyy");
setinitialrow_lvl();
txt_Po_No.Focus();
}
}
catch (Exception ex)
{
lblMessage.Text = ex.Message;
}
}
しかし、テキストボックスはフォーカスされていません。私が見逃しているのは何ですか。更新パネルを使用したのはそのためですか?または、私の css にわずかな欠陥があります。