如何用c#实现IE浏览器菜单的屏蔽

主  题:  如何用c#实现IE浏览器菜单的屏蔽?
作  者:  zhangxuanbird (张轩)  
等  级:
信 誉 值:  100
所属论坛:  .NET技术 C#
问题点数:  50
回复次数:  4
发表时间:  2003-3-18 3:23:11

问题应该不难,对于高手来说,所以给了50分,请各位大侠作答



回复人: saucer(思归, MS .NET MVP) ( 五星(高级)) 信誉:315 2003-3-18 3:46:54 得分:30

C# runs on the server side, it has control of the browser on the client side
use javascript to open a window with no menubar:
window.open("youraspx.aspx","WinName","menubar=no");
or
window.open("Sample.htm",null,
    "height=200,width=400,status=no,toolbar=no,menubar=no,location=no");

回复人: saucer(思归, MS .NET MVP) ( 五星(高级)) 信誉:315 2003-3-18 3:53:28 得分:0

if you mean in Winform, try set its MenuBar property to false, see
http://www.c-sharpcorner.com/Code/2002/Aug/UsingWithEvents.asp

回复人: cocosoft(pengyun) ( 一星(中级)) 信誉:111 2003-3-18 9:13:47 得分:0

同上。
http://www.c-sharpcorner.com/Code/2002/Aug/UsingWithEvents.asp

回复人: yinwu2003(鹦鹉) ( 三级(初级)) 信誉:102 2003-3-18 9:25:33 得分:20

window.open("Sample.htm",null,
    "height=200,width=400,status=no,toolbar=no,menubar=no,location=no");

该问题已经结贴 ,得分记录: saucer (30)、 yinwu2003 (20)、

Contributors: FHL