在按钮上显示div在asp.net中单击

时间:2014-03-25 16:45:16

标签: c# asp.net html button

我想在点击按钮时显示特定的div
我的asp代码如下

<asp:Button ID="Button1" class="btn" runat="server" OnClick="Submit" />

<div runat="server" id="signup" Visible="false">Some Content </div>

现在在CodeBehind中我编写了以下代码

protected void Submit(object sender, EventArgs e)
    {
        Button1.Visible = false;
        signup.Visible = true;
    }

但每次我收到错误

the name signup does't exist in the current context

我无法弄清代码中的问题..

2 个答案:

答案 0 :(得分:4)

html可能错误div,您也可以使用style="visible:none"代替Visible =“false”

更改

visible:"false" 

Visible="false"

答案 1 :(得分:0)

这必须通过JavaScript来完成,我相信按钮的onClientClick属性。我目前正在搜索要慢跑的代码