home *** CD-ROM | disk | FTP | other *** search
- <[
- // WINC - Chat1
- // (c) 1997 SmartDesk, Inc., All Rights Reserved
-
- _apGenerate( )
-
- websrvr = 0 + param( 1 )
- sessionId = 0 + param( 2 )
-
- session = new( "session", websrvr, sessionId )
-
- name = session.data( "winc_name" )
- alias = session.data( "winc_alias" )
- email_addr = session.data( "winc_email_addr" )
- pword = session.data( "winc_pword" )
- if ( strempty( name ) || strempty( alias ) || strempty( email_addr ) || strempty( pword ) )
- session.redir( "One Moment Please...", "logon.ap" )
- return( 0 )
- end
-
- channel = session.data( "winc_channel" )
- channels = new( "iniFile", fileFixPath( webServerHome( websrvr ) + "\\chat\\channels.dat" ) )
- if ( type( channels ) != "O" )
- session.error( "Unable to locate CHANNELS data file.", "FFFFFF", "000000" )
- return( 0 )
- end
-
- channelTitle = "<FONT COLOR=\"#FFFF00\">CHANNEL " + channel + "</FONT> " + strextract( channels.getstring( "channels", channel, "" ), "|", 1 )
- session.data( "winc_cmd", "chat" )
-
- ]>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
- <!-- SmartDesk Active Page, www.smartdesk.com -->
- <HTML>
- <HEAD>
- <TITLE>WINC Chat</TITLE>
- </HEAD>
- <BODY BGCOLOR="#000000" TEXT="#FFFFFF" LINK="#00FFFF" VLINK="#00FFFF" ALINK="#00FFFF">
- <FONT SIZE=1>
- <FORM ACTION="chatcmd.ap" METHOD="GET" TARGET="winc_bottom">
- <TABLE BORDER=0 WIDTH=600>
- <TR>
- <TD WIDTH=100 VALIGN="top">
- <A HREF="index.ap"><IMG SRC="chathdr.jpg" WIDTH=100 HEIGHT=75 BORDER=0></A><BR>
- </TD>
- <TD WIDTH=500 VALIGN="top">
- <B><[ ! channelTitle ]> - Chat</B><BR>
- <INPUT TYPE="hidden" NAME="channel" VALUE="<[ ! channel ]>">
- <INPUT TYPE="hidden" NAME="cmd" VALUE="chat">
- <INPUT TYPE="text" NAME="msg" SIZE=<[ ! ( session.IsMicrosoft( ) ? 60 : 40 ) ]>>
- <INPUT TYPE="Submit" VALUE="Send" >
- <INPUT TYPE="reset" VALUE="Clear" ><BR>
- <CENTER>
- <FONT SIZE=2>
- <B>
- <A HREF="comments.ap" TARGET="winc_top">Comments</A> |
- <A HREF="users.ap" TARGET="winc_bottom">Users</A> |
- <A HREF="links.ap" TARGET="winc_top">Links</A> |
- <A HREF="images.ap" TARGET="winc_top">Images</A> |
- <A HREF="sounds.ap" TARGET="winc_top">Sounds</A> |
- <A HREF="prefer.ap" TARGET="winc_top">Preferences</A> |
- <A HREF="trans.ap" TARGET="winc_top">Transcript</A> |
- <A HREF="chatcmd.ap?cmd=logoff" TARGET="_top">Leave</A>
- </B>
- </FONT>
- </CENTER>
- </TD>
- </TR>
- </TABLE>
- </FORM>
- </FONT>
- </BODY>
- </HTML>
-