T trint Jun 30, 2005 #1 I want my c# webforms to be all that is in the ie window and not show the toolbars and menus. Is that possible? Thanks, Trint
I want my c# webforms to be all that is in the ie window and not show the toolbars and menus. Is that possible? Thanks, Trint
W Wiebe Tijsma Jun 30, 2005 #2 trint said: I want my c# webforms to be all that is in the ie window and not show the toolbars and menus. Is that possible? Thanks, Trint Click to expand... You have to open a new window using javascript: example: <a href="javascript:window.open( 'mypage.aspx','mypage','menubar=no,toolbar=no,resizable=yes,scrollbars=yes,status=no,titlebar=yes' )">open my page</a> see: http://msdn.microsoft.com/library/d...hop/author/dhtml/reference/methods/open_0.asp Wiebe
trint said: I want my c# webforms to be all that is in the ie window and not show the toolbars and menus. Is that possible? Thanks, Trint Click to expand... You have to open a new window using javascript: example: <a href="javascript:window.open( 'mypage.aspx','mypage','menubar=no,toolbar=no,resizable=yes,scrollbars=yes,status=no,titlebar=yes' )">open my page</a> see: http://msdn.microsoft.com/library/d...hop/author/dhtml/reference/methods/open_0.asp Wiebe