我有一个文本框附加到用户控件内的 htmleditorextender,并且此用户控件存在于更新面板中的数据列表控件内。我有一个编辑链接按钮,点击它会显示文本框,此时我想将焦点设置到我尝试过这样做的文本框。
protected void lnkEditResponse_OnCommand(object sender, CommandEventArgs e)
{
if (QuestionList.Items.Count == 0)
{
log.Warn("There are no items in the data list.");
return;
}
try
{
DataListItem item = QuestionList.Items[int.Parse(e.CommandArgument.ToString())];
if (item == null)
{
log.Warn("No item found for the index " + e.CommandArgument);
return;
}
Panel responseLabelPanel = item.FindControl("ResponseLabelPanel") as Panel;
Panel responseInputPanel = item.FindControl("ResponseInputPanel") as Panel;
TextBox textArea = item.FindControl("QuestionResponseTextBox") as TextBox;
responseLabelPanel.Visible = false;
responseInputPanel.Visible = true;
ScriptManager mgr = ScriptManager.GetCurrent(this.Page);
(responseInputPanel.FindControl("LinkClearAll") as LinkButton).Visible = true;
(responseInputPanel.FindControl("lnkClear") as LinkButton).Visible = true;
ScriptManager.RegisterStartupScript(this, this.GetType(), "f", "document.getElementById('" + textArea.ClientID + "').focus();", true);
}
catch (Exception ex)
{
log.Error("Exception while handling file delete.", ex);
}
}
我也尝试过获取 texbox 并执行 .Focus() 但它不起作用是否有某种方法可以完成此操作。
PS:我将焦点设置在文本框中当前存在的文本的末尾非常重要(文本框加载了数据库中的数据)