Code:
HyperLink myweek = new HyperLink();
myweek.Text = "week";
myweek.NavigateUrl = "Summary.aspx";
cell.Controls.Add(myweek);
above hyperlink is creating dynamically in conrtrol.
When I click on the hyperlink it is opening pop up window which is expteced but the problem is it is opening with all the information( like addressbar..etc).
What can I change in the above code to display pop up window with out tool bar?
Do I need to make any changes to above code to work in firefox and other browsers?