0

我有一个使用对象作为内部属性的用户控件(下面是一些代码)。

我在以编程方式设置 Step 类的属性时遇到问题,当以编程方式设置时,它在回发中丢失,这表明与 Viewstate (?) 有关。

当以声明方式设置 Step 类的属性时,它工作正常。

有没有人知道这段代码是什么/是什么导致它在回发中失去状态?

ASPX 页面

    <uc1:StepControl ID="StepControl1" runat="server">
        <Step1 Title="1. Select your Products" Enabled="true">
            <Content>

                <div class="clearfix">
                    <div class="floatRight">
                        <asp:Button ID="btnGoToStep2" 
                        runat="server" 
                        Text="Next" 
                        CausesValidation="false" 
                        OnClick="btnGoToStep2_OnClick" />
                    </div>
                </div>

            </Content>
        </Step1>
        <Step2 Title="2. Select your Features">      
            <Content>

                <div class="clearfix">
                    <div class="floatLeft">
                        <asp:Button ID="btnBackToStep1" 
                        runat="server" 
                        Text="Back" 
                        CausesValidation="false" 
                        OnClick="btnBackToStep1_OnClick" />
                    </div>                    
                    <div class="floatRight">
                        <asp:Button ID="btnGoToStep3" 
                        runat="server" 
                        Text="Next" 
                        CausesValidation="false" 
                        OnClick="btnGoToStep3_OnClick" />
                    </div>
                </div>                    

            </Content>
        </Step2>                     
    </uc1:StepControl>

ASPX 代码背后

    protected void btnGoToStep2_OnClick(object sender, EventArgs e)
    {
        StepControl1.Step1.StatusText = "4 Products Selected";
    }

    protected void btnBackToStep1_OnClick(object sender, EventArgs e)
    {
        // StatusText (of Step1) gets lost at this point. 
    }

后面的用户控制代码

public partial class StepControl : System.Web.UI.UserControl
{
    [PersistenceMode(PersistenceMode.InnerProperty)]
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
    [NotifyParentProperty(true)]
    public Step Step1 { get; set; }

    [PersistenceMode(PersistenceMode.InnerProperty)]
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
    [NotifyParentProperty(true)]
    public Step Step2 { get; set; }

    protected void Page_Init(object sender, EventArgs e)
    {
        AddSteps();
    }

    private void AddSteps() { }
}

[Serializable()]
[ParseChildren(true)]
[PersistChildren(false)]
public class Step
{
    [PersistenceMode(PersistenceMode.Attribute)]
    public string Title { get; set; }

    [PersistenceMode(PersistenceMode.Attribute)]
    public string Status { get; set; }

    [PersistenceMode(PersistenceMode.InnerProperty)]
    [TemplateInstance(TemplateInstance.Single)]
    [TemplateContainer(typeof(StepContentContainer))]
    public ITemplate Content { get; set; }

    public class StepContentContainer : Control, INamingContainer { }
}
4

2 回答 2

4

我认为您设置的字符串永远不会进入 ViewState。我在这里有点缺乏术语(阅读:我不知道术语),但我认为你的属性[PersistenceMode(PersistenceMode.Attribute)]只告诉 ASP.NET 它应该在标记(ASPX 文件)中寻找一个名为“状态”的属性,如果它找到一,将属性Status设置为其值(实际上我想知道它在您的示例中到底放在哪里?)。但它并没有告诉任何人将某些内容放入 ViewState 中。

如果您Status按照这些思路定义您的财产

[PersistenceMode(PersistenceMode.Attribute)]
public string Status
    {
        get
        {
            object o = ViewState["Status"];
            if(o != null) {
                return (string)o;
            }
            return string.Empty;
        }
        set
        {
            ViewState["Status"] = value;
        }
    }

你应该过得更好。

对于其余部分,我不确定您是否必须调用TrackViewState()UserControls 甚至覆盖SaveViewStateLoadViewState但我不这么认为。如果是这种情况,以下链接可能会有所帮助:

于 2010-04-05T15:08:36.573 回答
0

它可能与在页面中创建控件的顺序有关。如果在回发之后,控件的创建顺序与第一次加载页面的顺序不同,那么检索视图状态将不适用于这些控件。

如何以编程方式设置 step 的属性?

于 2010-03-29T14:59:36.643 回答