How to hide the profile name in page title?

Xie Steven 811 Reputation points
2021-11-01T07:22:52.75+00:00

Hi,

I'm developing asp.net core application. I'm now using window.open() method to open a new window to show a page like the following:

$(document).ready(function () {  
            $("#open").click(function () {  
                var width = 600;  
                var height = 800;  
                var left = (screen.width - width) / 2;  
                var top = (screen.height - height) / 2;  
                var win = window.open('./Home/Update', 'updatePage',  
                    'width=' + width + ',height=' + height + ',left=' + left + ',top=' + top + ',scrollbars=no,location=no, menubar=no');  
            });  
        });  

The question is that the Edge browser will append the '- profile1 - Microsoft Edge' after the page title. I do not want to append this information. I only want the window show the 'Update Page' title. How to configure the Edge browser?

145317-%E5%B1%8F%E5%B9%95%E6%88%AA%E5%9B%BE-2021-11-01-151949.png

Thanks,
Steven

Microsoft Edge
Microsoft Edge
A Microsoft cross-platform web browser that provides privacy, learning, and accessibility tools.
2,130 questions
ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,164 questions
0 comments No comments
{count} votes

0 additional answers

Sort by: Most helpful