FineUI 官方论坛

标题: 请问我的弹出页为什么只能执行一次Page_load [打印本页]

作者: capfhz    时间: 2012-10-15 12:30
标题: 请问我的弹出页为什么只能执行一次Page_load
本帖最后由 capfhz 于 2012-10-15 14:01 编辑

弹出窗口为什么只能执行一次Page_load啊,代码跟AppBox差不多啊,不知道是哪配置不正确还 是?

AppBox的代码也是一样,只能执行一次Page_load


作者: capfhz    时间: 2012-10-15 12:53
父页面的前台页面,
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="List.aspx.cs" Inherits="UIWeb.SystemMgr.List" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <extageManager ID="ageManager1" runat="server" />
    <ext:Button ID="Button1" runat="server" Text="Button" EnablePostBack="false">
    </ext:Button>
    <ext:Window ID="Window1" runat="server" Height="350px" IsModal="true" Popup="true"
        Title="Window" Width="500px" CloseAction="HidePostBack" EnableFrame="True"
        EnableIFrame="True" EnableMaximize="True" EnableResize="True" Hidden="True"
        Target="Top" IFrameUrl="about:blank">
    </ext:Window>
    </form>
</body>
</html>
作者: capfhz    时间: 2012-10-15 12:54
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace UIWeb.SystemMgr
{
    public partial class List : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                Button1.OnClientClick = Window1.GetShowReference("listEdit.aspx","编辑");
            }
        }


    }
}
作者: capfhz    时间: 2012-10-15 13:06
希望三石兄能解答一下,为什么AppBox又是正常的呢,我写的代码为什么就不行呢,
作者: capfhz    时间: 2012-10-15 13:08
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="listedit.aspx.cs" Inherits="UIWeb.SystemMgr.listedit" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <extageManager ID="ageManager1" runat="server" />
    <extanel ID="anel1" runat="server" BodyPadding="5px" EnableBackgroundColor="true"
        ShowBorder="true" ShowHeader="true" Title="anel">
        <Items>
            <extabel ID="Label1" runat="server" Label="Label" Text="Label">
            </extabel>
        </Items>
    </extanel>
    </form>
</body>
</html>

作者: capfhz    时间: 2012-10-15 13:09
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace UIWeb.SystemMgr
{
    public partial class listedit : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                Label1.Text = DateTime.Now.ToString();
            }
        }
    }
}
作者: capfhz    时间: 2012-10-15 13:11
所有代码 我都贴出来了,我看了AppBox的代码,弹出窗口的代码跟我的一样啊,为什么AppBox就可用呢,我的就只能运行一次Page_load,望指点
作者: capfhz    时间: 2012-10-15 13:57
测试出来了,在AppBox里面也是一样的,打开同一个页面,也是只会执行一次Page_load
作者: capfhz    时间: 2012-10-15 13:58
可能只能用时间戳的方式解决了吗?????
作者: capfhz    时间: 2012-10-16 01:23
在 涵野 兄的帮助下解决了,在此表示感谢,是IE8的设置问题,谢谢




欢迎光临 FineUI 官方论坛 (https://fineui.com/BBS/) Powered by Discuz! X3.4