如何保留动态表的状态

时间:2019-02-05 09:40:35

标签: c# asp.net telerik

我已经动态创建了Radwizardsteps,每个向导步骤都包含一个动态表。问题是回发表被破坏了,所以我该如何维护表。

有人可以给我一个解决方法的想法吗。

controlTbl Table;
public void GenerateWizardSteps(int formID)
{
    RadWizardStep step;

    step = new RadWizardStep();
    step.ClientIDMode = ClientIDMode.Static;
    step.ID = "step_" + i.ToString();
    controlTbl = new Table();
    controlTbl.ClientIDMode = ClientIDMode.Static;
    controlTbl.ID = "controlTable_" + i.ToString();
    Session["myTable"] = controlTbl;
    step.Controls.Add(controlTbl);
    wizardControl.WizardSteps.Add(step);
}  

0 个答案:

没有答案