This topic is locked
[SOLVED]

 Custom/Variable Header Image

10/24/2009 4:20:42 PM
ASPRunnerPro General questions
C
claybob author

I have a need to display various header images (jpg) based on an individual log on. I will store various corporate logo's and when a client of a particular corporation logs in to the application, the appropriate corporate logo will appear on each page (in the header). Thanks for your help. ClayBob

J
Jane 10/26/2009

Hi,
check Session("UserID") variable in your header and show required image:

<%

if Session("UserID")="admin" the

Response.write "<img src=""admin.jpg"">

end if

%>