sharepoint 2010 - Logo for each site in site collection -
i want load different logo in each site in same site collection. logo tag exists in master page. idea ?
you can 2 things.
- you can replace sharepoint:sitelogoimage own.
you can use master.findcontrol find control doing following
var sitelogo = (sitelogoimage)page.master.findcontrol("id of control goes here");
sitelogo.logoimageurl = // insert logo img url here
Comments
Post a Comment