Home
Cute Chat / Web Messenger Developer's Guide Prev Page Prev Page
Getting Started
Features of Cute Chat
Features of Web Messenger
Chat Requirements
Web Messenger Requirements
License
Deployment & Integration
Installing Chat/Messenger Standalone
Community Server CS 2.1 Integration
Community Server CS 2.0 Integration
Community Server CS 1.x Integration
Dotnetnuke 4.x Integration
Dotnetnuke 3.x Integration
Dotnetnuke 2.x Integration
IbuySpy(C#) Integration
IbuySpy(VB) Integration
Snitz forum Integration
Rainbow Portal Integration
FAQ
Overview
Run Cute Chat from different folder
Customization
Set up Cute Chat banner ads
Set up Web Messenger banner ads
Add a time stamp to each message
Embed mode
Run Cute Chat in embed mode
Run Web Messenger in embed mode
Localization
Specify the custom culture name
Add a new language file
Oracle and Access
Use Oracle as Data Source
Use Access as Data Source
Integration with an existing user membership database.
Integration with an existing user membership database (C#).
Integration with an existing user membership database (VB).
General Installation Instructions
Cute Chat

Run Cute Chat in embed mode

All chat rooms of Cute Chat can be added to web pages in embed mode. If a chat room is added to a web page in embedded mode all users opening that page will automatically enter the chat room.

embed chat

To emebd a chat room, you need to know the LocationId of this chat room.

The following example embeds a chat room into a web page. The LocationId of this chat room is 1. You can modify this example to meet your own requirements.

<%@ Page Language="C#" %>
<%@ Register TagPrefix="CuteChat" TagName="EmbedChannel" src="cutesoft_client/cutechat/embedchannel.ascx" %>
<html>
 <head runat=server>
  <title>Embed CuteChat </title>
 </head>
 <body>
  <script>
  //set up the parameters 
  Embed_Location='Lobby'
  Embed_LocationId='1'
  </script>
  <CuteChat:EmbedChannel id="EmbedMessenger1" runat="server"></CuteChat:EmbedChannel>
 </body>
</html>


How to get LocationId of my chat room?

Every Chat room of Cute Chat is identified by LocationId. If you don't know the LocationId of your chat room, please open the chat room in standard mode.

LocationId.

The LocationId of the chat room can be easily found in the URL.

The CHM file was converted to HTML by chm2web software.