Re: Start messenger chat without adding as contact first? possible?

  •  02-07-2010, 11:47 PM

    Re: Start messenger chat without adding as contact first? possible?

    Hi wafa,
     
    you can add the code in any page. For example, I create a new page like below.
     
    when you click on the link, the messenger will open automatically and chat to user "test"
     
    1. <%@ Page Language="C#" %>   
    2.   
    3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    4.   
    5. <html xmlns="http://www.w3.org/1999/xhtml" >   
    6. <head runat="server">   
    7.     <title>example</title>   
    8. </head>   
    9. <body>   
    10.     <form id="form1" runat="server">   
    11.     <div>   
    12.         <script src="CuteSoft_Client/CuteChat/IntegrationUtility.js.aspx"></script>   
    13.             <a href="#" onclick="Chat_OpenContact('test')">UniqueName=test</a>   
    14.     </div>   
    15.     </form>   
    16. </body>   
    17. </html>  

    Regards,
     
    Ken
View Complete Thread