在我的Web應用程序中,我需要一個功能,以便當用戶單擊文本框輸入值時,它應該使按鈕和其他字段可見?如何在asp.net中實現文本框上的點擊事件?
我使用下面提供的代碼,但無法使其工作。
C#:
protected void TextBox1_Click(object sender, EventArgs e)
{
ButtonSearch.Visible = true;
}
ASP.Net:
<asp:TextBox ID="TextBox1" runat="server" OnTextChanged="TextBox1_TextChanged" OnClick="TextBox1_Click"></asp:TextBox>
<asp:Button ID="ButtonSearch" runat="server" OnClick="ButtonSearch_Click" Text="Search" Visible="False" />
如何做到這一點?
感謝
不起作用... – user1144852