View Single Post
  #7 (permalink)  
Old Oct 16th, 2007, 01:22
Monie Monie is offline
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,608
Blog Entries: 2
Thanks: 0
Thanked 4 Times in 3 Posts
Send a message via Yahoo to Monie
Re: Show "Image" Depends On User "Status"?

Yes, I did it. Thanks robbied.

Code: Select all
<%
    Session("userStatus") = rs("status")
    If Session("userStatus") = "Online" Then
        Response.Write ("<img src=img/online.gif>")
    Else
        Response.Write ("<img src=img/offline.gif>")
    End If
%>

Last edited by Monie; Oct 16th, 2007 at 05:09.
Reply With Quote