我创建了一个使用C#
运行流程的程序目前它包含大量按钮以使某些面板可见等。
我想知道当用户选中复选框时是否可以刷新页面?
答案 0 :(得分:1)
您需要将CheckBox'AutoPostBack
-property设置为true
(默认为false
)。
<asp:CheckBox id="checkbox1" runat="server"
AutoPostBack="True"
Text="Check/uncheck me for a postback"
OnCheckedChanged="Check_Clicked"/>
答案 1 :(得分:0)
试试这个:
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
//do whatever you want to on first time page load
}
}
答案 2 :(得分:0)
如果您想refresh
检查checkbox
您的小组,可以执行以下操作: -
<asp:CheckBox id"chkVisible" runat="server" AutoPostBack="true" OnCheckedChanged="chkVisible_OnCheckedChanged" Text="Test for Page referesh" />
您需要将AutoPostBack
属性设置为True
才能刷新页面。