我在向导中有一个更新面板:
<asp:WizardStep ID="WizardStep2" runat="server" StepType="Auto"
Title="Set the number of users required.">
...
<asp:UpdatePanel ID="UpdatePanel2" UpdateMode="Always" runat="server">
<ContentTemplate>
<asp:Label runat="server" ID="ProgressInd" Text="Progress..." />
<asp:Button runat="server" OnClick="GoButton_Click" ID="ProgressBtn" Text="Go" />
</ContentTemplate>
</asp:UpdatePanel>
</asp:WizardStep>
...
protected void GoButton_Click(object sender, EventArgs e)
{
ProgressInd.Text = "Progress... Moving";
}
当我从向导中取出更新面板时,它可以正常工作,但在向导内部,单击事件不会触发。我正在使用Firefox进行测试,但IE也无法正常工作。任何想法或帮助表示赞赏。
答案 0 :(得分:1)
记录。保罗发现了我的问题。有一些页面验证器阻止事件发生。