我有一个web项目,在视图中包含两个按钮。当我单击一个按钮时,必须显示一些文本框和第二个按钮。在文本框中输入数据后,当我尝试单击第二个按钮时,不工作。我该怎么办才能让它发挥作用? 提前谢谢。
答案 0 :(得分:11)
Rahul试试这个
在aspx页面
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
<asp:Button ID="Button2" runat="server" Text="Button" onclick="Button2_Click" />
在aspx.cs页面
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Button2.Visible = false;
TextBox1.Visible = false;
}
}
protected void Button1_Click(object sender, EventArgs e)
{
Button2.Visible = true;
TextBox1.Visible = true;
}
protected void Button2_Click(object sender, EventArgs e)
{
TextBox1.Text = "Testing";
}