Click here to Skip to main content
16,012,843 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have to display image on title as on codeproject title bar....how to code it in asp.net
Posted
Comments
[no name] 17-Nov-12 3:10am    
As per my knowledge, I think that is being done by browser itself, after hosting the site..

1 solution

If you mean the icon on the tab string in the browser, it's called a "favicon":
XML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
  <meta http-equiv="content-type" content="text/html; charset=windows-1250">
  <meta name="generator" content="PSPad editor, www.pspad.com">
  <title>My Title</title>
  <link rel="SHORTCUT ICON" href="http://YourDomain/YourPath/YourIconFileName.ico" type="image/ico" />
  <body>
       My Body
  </body>
</html>
You need the "link" tag from the above
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900