伙计我在c#中使用imagemap,我在代码中使用了导航到图像映射。我希望新页面成为弹出窗口我已成功。但在mozilla中我的父页面将URL更改为:
"javascript:window.open('WebForm1.aspx','Graph','height=600,width=900');"
它在chrome
中工作正常我将用于绑定网址到热点的c#代码如下:
RectangleHotSpot rh;
CoordBAL _cbl = new CoordBAL(SessionContext.SystemUser);
rh = new RectangleHotSpot();
rh.Top = 0;
rh.Bottom =500 ;
rh.Left = 0 ;
rh.Right = 500 ;
rh.NavigateUrl = "javascript:window.open('default.aspx','Graph','height=600,width=900');";
ImgMp.HotSpots.Add(rh);
答案 0 :(得分:0)
我得到了答案:
rh.NavigateUrl = "javascript:void(window.open('default.aspx','Graph','height=600,width=900'););";