| Author: greeny_1984 03 Nov 2009 | Member Level: Diamond | Rating:  Points: 2 |
Hi,
You can use window.open("pagename.aspx") to open a pop up window.
Regards, Greeny_1984
Rate this Response[Excellent/Good/Poor] FRESHERS check this link Need help from me join here
|
| Author: Lakhan Pal 03 Nov 2009 | Member Level: Diamond | Rating:  Points: 2 |
Hi -
As Suggested By greeny you can use window.open("pagename.aspx") to open a pop up window. and register this Script on Button click using Page.RegisterStartupScript method.
Please rate this answer if it helped you. Thanks & Regards Lakhan Pal Garg Free Code Snippets
|
| Author: :) Bob (: 03 Nov 2009 | Member Level: Gold | Rating:  Points: 2 |
hai
use window.open("<pagename>")
|
| Author: greeny_1984 03 Nov 2009 | Member Level: Diamond | Rating:  Points: 2 |
In the sever side you can open page as follows
ClientScript.RegisterStartupScript(this.GetType(), "", "<script language=javascript>window.open("page.aspx")</script>");
Regards, Greeny_1984
Rate this Response[Excellent/Good/Poor] FRESHERS check this link Need help from me join here
|