我正在创建一个聊天机器人。为了增加用户友好性,我需要让用户按下回车按钮来提交他输入的内容。我尝试了几件事。但没有奏效。
使用网页上的默认按钮。
<asp:Panel ID="Panel1" runat="server" DefaultButton="Button1" Height="414px">
分别编码回车按钮
private void btnEnter_Click(object sender, EventArgs e)
{
myBot.Read(this.txtInput.Text);
this.txtInput.Text = string.Empty;
}
我需要在 ASP.Net 网页上执行此操作。请帮忙。