asp.net-删除新窗口左侧的IE收藏夹 [英] asp.net - removing the IE Favorites on left side of a new window

查看:55
本文介绍了asp.net-删除新窗口左侧的IE收藏夹的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好.我正在将ASP.NET用于网站(IE).网站的一部分以弹出样式在新窗口中打开.不幸的是,侧面窗口中的收藏夹"列表始终显示在新窗口中.我目前正在使用javascript打开新窗口.它在下面.

Hello. I am using ASP.NET for a website (IE). Part of the website opens in new window(s) in a popup style. Unfortunately, there is the list of Favorites in a side window that always appears in the new window. I am currently using javascript to open the new window. It is below.

function ShowRequestDetail(RequestID)
{
    window.open("RequestListDetailView.aspx?RequestID=" + RequestID, "",
        "Width=725px; Height=600px; resizable=no; scrollbars=1;");
}



我尝试了来自不同javascript网站的不同组合,但屏幕左侧的收藏夹"部分仍然存在.打开新窗口时是否可以隐藏此方法?还是有可能做?

谢谢....John



I have tried different combinations from different javascript sites but the Favorites section on the left side of the screen is still there. Is there a way to hide this when opening up new windows? Or is it even possible to do?

Thanks....John

推荐答案

您可以尝试添加个人栏功能:
You could try adding the personalbar feature:
function ShowRequestDetail(RequestID)
{
    window.open("RequestListDetailView.aspx?RequestID=" + RequestID, "",
        "Width=725px;Height=600px;resizable=no;scrollbars=1;personalbar=false");
}


这篇关于asp.net-删除新窗口左侧的IE收藏夹的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆