How to display pop up window from Hyperlink with in the control

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
Below code is in one control example.ascx
if (Id=="7")

{
HyperLink myweek = new HyperLink();
myweek.Text = "week";

myweek.NavigateUrl = "Summary.aspx";


cell.Controls.Add(myweek);
}



when some one clicks hyperlink week,I have to display Pop up window with Summary aspx page wichhas some static data..
above code is simply displaying webpage Summary.aspx ,but I want pop up window how canI do that ?

thirumal

View the full article
 
Back
Top