有没有办法在“后退”按钮上重置 asp:Wizard 中的所有数据?

发布于 2024-11-19 06:22:59 字数 437 浏览 1 评论 0原文

我有一个包含几个页面的 标记,每个步骤页面都有一个“后退”按钮,允许返回到上一个向导页面。

由于以下流程,这给我带来了问题:

  • 1 - 例如,用户位于第 3 页;
  • 2 - 他在意识到自己在第 2 页中做出了错误的选择之前填充了一些数据;
  • 3 - 他单击“返回”并转到第 2 页;
  • 4 - 修复他的选择(第 3 页中的数据现在没有任何用处)
  • 5 - 他单击“下一步”并转到第 3 页。这是我的问题。 数据已保留,当用户在第 3 页时可以看到他的旧数据。如何清除此问题?

我是 ASP.NET WebForms 新手。请帮忙,我被这个问题困扰,甚至不知道如何处理。但我认为我不需要手动重置所有字段!

I have an <asp:Wizard> tag with a few pages, each Step page with a Back button allowing to go back to the previous wizard page.

This causes me problem because of this flow:

  • 1 - user is in page 3 for example;
  • 2 - he fills some data before realizing he made a bad selection in page 2;
  • 3 - he click Back and goes to page 2;
  • 4 - fixes his chose (the data in page 3 won't be of any use now)
  • 5 - he clicks Next and goes to page 3. HERE IS MY PROBLEM. The data was persisted and when in page 3 the user sees his old data. How do I clear this?

I'm new to ASP.NET WebForms. Please help, I'm stuck with this and don't even know how to approach it. But I assume I don't need to reset all fields by hand!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

树深时见影 2024-11-26 06:22:59

尝试

<asp:WizardStep ID="Step3" runat="server" Title="Step 3" EnableViewState="False">

更新

有一些简单的方法可以重置 WebForm 中的所有字段。

  1. HTML 重置按钮:

    input type="reset" value="重置表单!" />

  2. Javascript:

    function resetforms() {document.forms[0].reset();返回假;}
    
  3. 从代码隐藏中调用相同的 javascript:

     Page.ClientScript.RegisterStartupScript(this.GetType(), "MyScript", "document.forms[0].reset();return false;", true);
    

不幸的是,这三个在使用 asp:Wizard 的情况下不起作用,因为它们都将控件重置为 PostBack 后保留在 ViewState 中的值。

因此,我发现的最合适的选择是使用手动编码的递归方法,该方法将从向导的 PreviousButtonClick 事件处理程序中调用:

    private void ClearInputs(ControlCollection ctrls)
    {
        foreach (Control ctrl in ctrls)
        {
            if (ctrl is TextBox)
                ((TextBox)ctrl).Text = string.Empty;
            else if (ctrl is DropDownList)
                ((DropDownList)ctrl).ClearSelection();
            else if (ctrl is CheckBox)
                ((CheckBox)ctrl).Checked = false;

            ClearInputs(ctrl.Controls);
        }
    }

    protected void YourWizardName_PreviousButtonClick(object sender, WizardNavigationEventArgs e)
    {
        ClearInputs(YourWizardName.WizardSteps[e.CurrentStepIndex].Controls);
    }

如果用户单击“上一个”按钮,上面的方法将重置当前 WizardStep 的所有文本框、下拉列表和复选框(在将用户转发到上一步之前)。因此,如果您需要清除任何其他控件,则必须将适当的代码添加到 ClearInputs() 方法中。

该代码改编自这篇帖子。在那里您可以找到有关该方法如何工作的更多详细信息以及使用 jQuery 解决相同任务的方法。

Try

<asp:WizardStep ID="Step3" runat="server" Title="Step 3" EnableViewState="False">

UPDATE

There are some easy ways to reset all fields in your WebForm.

  1. HTML reset button:

    input type="reset" value="Reset Form!" />

  2. Javascript:

    function resetforms() {document.forms[0].reset(); return false;}
    
  3. Calling the same javascript from the codebehind:

     Page.ClientScript.RegisterStartupScript(this.GetType(), "MyScript", "document.forms[0].reset();return false;", true);
    

Unfortunately those three won't work in case with asp:Wizard because they all reset controls to values persisted in ViewState after PostBack.

So the most appropriate option I've found is to use a handcoded recursive method which will be called from the Wizard's PreviousButtonClick event handler:

    private void ClearInputs(ControlCollection ctrls)
    {
        foreach (Control ctrl in ctrls)
        {
            if (ctrl is TextBox)
                ((TextBox)ctrl).Text = string.Empty;
            else if (ctrl is DropDownList)
                ((DropDownList)ctrl).ClearSelection();
            else if (ctrl is CheckBox)
                ((CheckBox)ctrl).Checked = false;

            ClearInputs(ctrl.Controls);
        }
    }

    protected void YourWizardName_PreviousButtonClick(object sender, WizardNavigationEventArgs e)
    {
        ClearInputs(YourWizardName.WizardSteps[e.CurrentStepIndex].Controls);
    }

The method above will reset all textboxes, dropdownlists and checkboxes of the current WizardStep if the user clicks on the Previous button (before forwarding the user to the previous step). So if you need to clear any other controls you'll have to add appropriate code into the ClearInputs() method.

The code is adapted from this post. There you can find more details on how the method works and also the way to solve the same task using jQuery.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文