Rank: Newbie Groups: Member
Joined: 3/2/2008 Posts: 3
|
Trying to automatically show a Window on first page request with InitialState. Works fine in IE but not in FF (build EOWeb_2007_2_40_Setup.exe)
<%@ Page Language="C#" AutoEventWireup="true" %>
<%@ Register Assembly="EO.Web" Namespace="EO.Web" TagPrefix="eo" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void btnInWindow_Click(object sender, EventArgs e) { btnInWindow.Text = DateTime.Now.ToString(); } </script>
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <div> <asp:UpdatePanel runat="server" ID="updatePanel"> <ContentTemplate> <eo:Dialog ID="Dialog1" ShowButton="btn" runat="server" BorderColor="Black" Visible="true" InitialState="Visible" BackColor="White" Height="200px" Width="300px"> <ContentTemplate> WINDOW <asp:Button runat="server" ID="btnInWindow" onclick="btnInWindow_Click" Text="DEFAULT VALUE" /> </ContentTemplate> </eo:Dialog>
</ContentTemplate> </asp:UpdatePanel> </div> </form> </body> </html>
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
This appears to be a problem. I guess you will get 2007.2.41 soon. :)
Thanks
|