开发者

Pass data between web forms inside ASP.NET

开发者 https://www.devze.com 2023-02-26 03:35 出处:网络
In Winforms I Can do following protected void SomeButonClick(object sender, EventArgs e) { ChildForm cf = new ChildForm();

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

精彩评论

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