Integrate Chat to an existing website developed in VB

Last post 01-06-2010, 5:27 AM by Kenneth. 4 replies.
Sort Posts: Previous Next
  •  01-01-2010, 3:43 AM 58009

    Integrate Chat to an existing website developed in VB

    Hello
     
    Can anyone help me integrate the chat on my website.
    I should use my existing users and allow them to talk to friends and send private messages
     
    please help.\\
     
    Thanks
    Filed under:
  •  01-04-2010, 3:29 AM 58023 in reply to 58009

    Re: Integrate Chat to an existing website developed in VB

    Hi kesaven,
     
     
    The link above contains all steps to tell you how to integrate CuteChatAndMessenger with a existing site(use your own membership)
     
    Any questions you can send mail to [email protected]
     
    Regards,
     
    Ken
  •  01-04-2010, 9:26 PM 58042 in reply to 58023

    Re: Integrate Chat to an existing website developed in VB

    Hi Ken,
     
    I just purchase a license and I'm trying to understand all your documentation so I can integrate chat into my website which is written VB. I was able to ran the sampleportal5 solution and converted it to VS2008.  Can you provide an example how to embed chat into a VB web page? It will really help me get a good start. Below is the example of you provided from your website. I know I have to do all these steps  from DeploymentIntegration.htm but an example would be very helpful.
     
    Thanks for your help,
    Max
     
     
     
    <%@ 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>
     
    Filed under: , ,
  •  01-05-2010, 5:04 PM 58060 in reply to 58042

    Re: Integrate Chat to an existing website developed in VB

    anyone there????
  •  01-06-2010, 5:27 AM 58065 in reply to 58060

    Re: Integrate Chat to an existing website developed in VB

    Hi moligane,
     
    Vb embed example
     
    1. <%@ Page Language="VB" %>   
    2.   
    3. <%@ Register TagPrefix="CuteChat" TagName="EmbedChannel" Src="CuteSoft_Client/CuteChat/EmbedChannel.ascx" %>   
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    5.   
    6. <script runat="server">   
    7.            
    8.     Private Sub Page_Load(ByVal sender As ObjectByVal e As System.EventArgs)   
    9.         If Not Me.IsPostBack Then  
    10.             If CuteChat.ChatApi.GetLobbyInfoArray().Length > 0 Then  
    11.                 EmbedChannel1.Visible = True  
    12.             Else  
    13.                 EmbedChannel1.Visible = False  
    14.             End If  
    15.         End If  
    16.     End Sub  
    17. </script>   
    18.   
    19. <script>     
    20.     Embed_Place='Lobby-1';   
    21. </script>   
    22.   
    23. <html xmlns="http://www.w3.org/1999/xhtml">   
    24. <head runat="server">   
    25.     <title>Untitled Page</title>   
    26. </head>   
    27. <body>   
    28.     <form id="form1" runat="server">   
    29.         <CuteChat:EmbedChannel ID="EmbedChannel1" runat="server"></CuteChat:EmbedChannel>   
    30.     </form>   
    31. </body>   
    32. </html>  
    Regards,
     
    ken
View as RSS news feed in XML