EDN Admin
Well-known member
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
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