我想通过多个步骤在 asp:wizard 中自动收集所有信息(即控制值)。怎么做?我找到了一个有趣的链接,但它似乎无法正常工作:只是关于当前步骤的一些信息:http: //msdn.microsoft.com/en-us/library/yt340bh4 (v=vs.80).aspx
foreach (Control c in Page.Controls)
{
foreach (Control childc in c.Controls)
{
if (childc is Label)
{
lblTitre0.Text += ((Label)childc).Text + ",";
}
}
}
lblTitre0 (asp:label) 中没有显示数据