I just get a ASP.NET web site. It use JavaScript, JQuery, and jqGrid. I use Chrome to open the website. The first page has a button. Press that and a new page will pop up. This pop up page does not show regular Chrome icon. Instead it shows the following 'paper' icon. Is there any way to change this 'paper' icon back to the Chrome icon?
I try the web site using Microsoft Edge and Internet Explorer 11 (both are not supported browser by this web site). Both shows regular icon when the pop up page comes up.
Here is a bit of detail: First page is popup.aspx with a login button.
$(document).ready(function() {
....
// if staff id is empty,
window.open('AfterLogin.aspx?id= ...
The button will pop up page called AfterLogin.aspx. It basically is empty, but it uses master page. In the master page, it do some checking and redirect to the login.aspx page.