Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Resize the pop up window

Status
Not open for further replies.

mtrasp

Programmer
Jun 15, 2009
35
US
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?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top