Logos |
10/8/2007 8:13:27 AM |
ASPRunnerPro General questions | |
B
beebee author
Is it possible to place a logo on the screen dependent on the clients logon details. We have several clients who log on to get information and if we could customise the screen to them it would be great. |
|
![]() |
Sergey Kornilov admin 10/9/2007 |
Chris, <% set rstmp = Server.CreateObject("ADODB.Recordset") rstmp.Open "select LogoFile from LoginTable where UserID = '" & Session("UserID") & "'", dbConnection if not rstmp.eof then response.write "<img src='" & rstmp("LogoFile") & "'>" end if rstmp.close set rstmp = nothing %>
|
B
|
beebee author 2/25/2008 |
Hi |
J
|
Jane 2/28/2008 |
Chris, |