Microsoft Edge
A Microsoft cross-platform web browser that provides privacy, learning, and accessibility tools.
2,357 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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?
Thanks,
Steven
This is for security and can not be defeated.