Hi QwertyMC,
Myabe you can show/hide the embed chat control like the code below by javascript. Or you can try use the tab control. put the embed chat control into another tab, so the user can show/hide the chat by the tab.
- <div id="div_chat" style="visibility: hidden">
- <CuteChat:EmbedChannel ID="EmbedChannel1" runat="server"></CuteChat:EmbedChannel>
- </div>
- <script type="text/javascript">
- function openChat() {
- var div_chat = document.getElementById("div_chat");
- var input1 = document.getElementById("input1");
- if (div_chat.style.visibility == "hidden") {
- div_chat.style.visibility = "visible";
- }
- else {
- div_chat.style.visibility = "hidden";
- }
- if (input1.value == "show") {
- input1.value = "hide";
- }
- else {
- input1.value = "show";
- }
-
- }
- </script>
Regards,
Ken