When my page loads, my panel (controlled by a link & Modal Popup Extender) briefly appears. I've read the FAQ (item #1) but it doesn't seem to apply to Modal Popups. I've pasted my simple code here. Can anyone help with this? I'm a newbie at Atlas & Ajax! Also, I've set the debug to false in the web.config and ran it without debugging. Same result.
Thanks in advance,
Dave
<form id="form1" runat="server">
<atlas:ScriptManager ID="ScriptManager1" runat="server" />
<div>
<asp:LinkButton ID="LinkButton1" runat="server"
Style="position: relative">LinkButton
</asp:LinkButton>
<cc1:ModalPopupExtender ID="ModalPopupExtender1" runat="server">
<cc1:ModalPopupProperties
CancelControlID="cancelButton"
DropShadow="True"
OkControlID="okButton"
PopupControlID="Panel1"
TargetControlID="LinkButton1">
</cc1:ModalPopupProperties>
</cc1:ModalPopupExtender>
<asp:Panel ID="Panel1" runat="server" Height="71px"
Style="left: 46px; position: static; top: 11px"
Width="147px" BackColor="Yellow">
<asp:Button ID="okButton" runat="server"
Style="position: relative" Text="OK" />
<asp:Button ID="cancelButton" runat="server"
Style="position: relative; left: 53px; top: 0px;"
Text="Cancel" /></asp:Panel>
</div>
</form>