0

在 Winforms 我可以做以下

protected void SomeButonClick(object sender, EventArgs e)
{
ChildForm cf = new ChildForm();
cf.Grid = ParentForm.Grid
cf.ShowDialog();
//and so on
}

我如何在 ASP.NET WebForms 中完成类似的事情。

4

1 回答 1

0

在 ASP.NET 中有很多方法可以解决这个问题。您对“ShowDialog”的使用向我表明,您将从使用jquery启动模式弹出窗口中获得您想要的东西。有几个罐头工具可以做到这一点,比如jquery popup

于 2011-04-18T11:06:35.393 回答