开发者

Pass data between web forms inside ASP.NET

In Winforms I Can do following

protected void SomeButonClick(object sender, EventArgs e)
{
ChildForm cf = new ChildForm();
cf.Grid = Pare开发者_StackOverflow社区ntForm.Grid
cf.ShowDialog();
//and so on
}

How I can accomplish something similar in ASP.NET WebForms.


There are a number of ways to approach this in ASP.NET. Your use of "ShowDialog" suggests to me that you will get what you want out of using jquery to launch a modal popup. There are several canned tools for this, like jquery popup.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜