Using the example provided, I only get a page with the advertisement image on it. I've authenticated the user from the Login.aspx page in my app. Here is the Mark up of the Default.aspx page for my app which is redirected to after a successful login. and a snapshot of the output.
Any help or direction would be helpful. It appears that the Syntax Highlighter Code Widget in this editor changes the code pasted into it.
- <form id="form1" runat="server">
- <asp:scriptmanager id="scriptManager1" runat="server">
- <div>
- <img id="imgBackPlate" src="images/RMSBackplate.JPG" alt="Simulation">
- <asp:updatepanel id="mainUpdatePanel" runat="server">
- <contenttemplate>
- <div id="divAppsBar">
- <div id="divAppControlPanel" style="padding-left: 3px; padding-top: 3px;" align="right">
- <asp:imagebutton id="membersList" runat="server" imageurl="~/CuteSoft_Client/CuteChat/Images/icon_invite.gif" onclick="membersList_Click">
- </asp:imagebutton></div>
- </div>
-
- <asp:panel id="divChatMembersPanel" runat="server" cssclass="ChatMembersPanel">
- <cutechat:embedmessenger id="EmbedMessenger1" runat="server">
- </cutechat:embedmessenger></asp:panel>
- </contenttemplate>
- <triggers>
- <asp:asyncpostbacktrigger controlid="membersList" eventname="Click">
- </asp:asyncpostbacktrigger></triggers>
- </asp:updatepanel>
- </div>
- </asp:scriptmanager></form>