Changing The Logo In The Header

Tips submitted by ASP.NET Maker users
Post Reply
jcrick
User
Posts: 15

Changing The Logo In The Header

Post by jcrick »

If you want to change the "Header Logo", you can use the Startup Script (Client Scripts -> Global -> Pages with header/footer -> Startup Script). For example (C#):

var cu = @CurrentUserID();
if (cu == "<UserID>") { // Replace <UserID> with actual value
$("#ewHeaderRow").html('<HTML code>'); // Replace <HTML code> with actual code to display image
}

Jerry


Post Reply