具有动态步骤的 Asp.net 向导控件卡住了

发布于 2024-08-31 21:09:11 字数 807 浏览 8 评论 0原文

我有一个必须使用动态步骤的向导控件。我有以下加载动态步骤的代码(这一切都正常)。我有 7 个静态步骤。

protected override LoadViewState(object savedState)
{
    base.LoadViewState(savedState);

    int offset = 4;
    foreach(string stepName in this.ViewState["Steps"])
    {
        WizardStep step = new WizardStep();
        step.Title = stepName;
        this.Wizard1.WizardSteps.AddAt(step, offset); // LINE 1
        this.Wizard1.WizardSteps.Add(step); // LINE 2
        offset++;
    }
}

当我执行代码并使用第 1 行时,我遇到两个问题。当我进入动态步骤时,它不会让您继续进行下一个步骤(使用“下一步”按钮)。这似乎是因为 this.IsValid 为 false(但我页面上没有验证控件)。它似乎只是卡在当前页面上。

当我使用第 2 行运行时,它会再次很好地添加步骤。当我处于第一个动态步骤并单击“下一步”时,我收到错误。 ActiveViewIndex 被设置为“7”。它必须小于当前视图控件“7”。对于动态添加的视图,请确保它们在 Page_PreInit 事件之前或之中添加。

第二个错误的问题是我无法在 Page_PreInit 中添加动态步骤,因为我需要访问视图状态才能知道要绘制多少步骤。

I have a wizard control which must use dynamic steps in. I have the following code which loads the dynamic steps (this all works fine). I have 7 static steps.

protected override LoadViewState(object savedState)
{
    base.LoadViewState(savedState);

    int offset = 4;
    foreach(string stepName in this.ViewState["Steps"])
    {
        WizardStep step = new WizardStep();
        step.Title = stepName;
        this.Wizard1.WizardSteps.AddAt(step, offset); // LINE 1
        this.Wizard1.WizardSteps.Add(step); // LINE 2
        offset++;
    }
}

I have two issues, when I execute the code and use Line 1. When I get to a dynamic step it won't let you procede to the next one (using the Next button). This seems to be because this.IsValid is false (but I have no validation controls on the page). It just seems to get stuck on that current page.

When I run using Line 2, it adds the steps again fine. When I am on the first dynamic step and click Next I get the error. ActiveViewIndex is being set '7'. It must be smaller than the current view controls '7'. For dynamically added views, make sire they are added before or in Page_PreInit event.

The issue with the second error is I can't add the dynamic steps in Page_PreInit because I need access to the viewstate to know how many steps to draw.

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

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

发布评论

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

评论(1

汹涌人海 2024-09-07 21:09:11

我发现了这个问题。这是因为这些步骤必须添加到 Page_PreInit 事件中。这确实意味着我无法使用 Viewstate,但我现在正在使用 Session。

I found the issue. Its since the steps must be added in the Page_PreInit event. Which does mean I can't use the Viewstate but I am using the Session instead now.

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