How to replace the icon that shows in the IE tab or address bar

Description

When you launch an application in Internet Explorer, an icon shows in the IE tab and the address bar. By default, the icon is the IE icon, but you can change it to any other icon.

Workaround

Step 1: Prepare an icon that you want to display in the IE tab and the address bar. Name it to "app.ico".

Step 2: Go to the Web folder where the application is deployed, for example, C:\Inetpub\wwwroot\codeexamples, copy and paste the app.ico file to the images folder, and modify the x32_application.htm and x64_application.htm files by following instructions below:

The original code:

<head>
 <title>Appeon Web Library</title>
</head>

Should be added with the following line of script (in bold text):

<head>
 <link rel="Shortcut Icon" href="./images/app.ico">
 <title>Appeon Web Library</title>
</head>