I have wrote a client side code in server side code like this:
strHTMLGrid = strHTMLGrid + "<link rel='shortcut icon' href='/EVServer/Images/favicon.ico'/> \n";
This code looks like this in client side:
<link rel="shortcut icon" href="/EVServer/Images/favicon.ico" />
On executing the HTML file dynamically it comes like this:
<link rel='shortcut icon' href='/EVServer/Images/favicon.ico'/>
What to add in code behind so that i can get like this in my HTML file dynamically.Like this below in C#:
<link rel="shortcut icon" href="/EVServer/Images/favicon.ico" />