asp.net---iframe切分页面,局部刷新,一个页面的点击事件在另一个页面响应

例如如下几个页面,想要实现在页面1中输入信息点击发送后,页面2立即显示所输入的信息

前端代码为:

<form id="form1" runat="server" method="post">
        <div class="container main" style="height:600px;">
            <div class="h4" style="text-align:center;">聊天室</div>
            <div id="left">
                <iframe src="List.aspx" name="left" scrolling="no" width="300px" height="460px" frameborder="0"></iframe>
            </div>
            <div id="right">
                <iframe src="Content.aspx" name="right" scrolling="no" width="860px" height="460px" frameborder="0"></iframe>
            </div>
            <div id="bootom">
                <iframe src="Bottom.aspx" name="bootom" scrolling="no" width="1170px" height="95px" frameborder="0"></iframe>
            </div>
        </div>   
        
    </form>

    其中left是页面3,right是页面2,bootom是页面1

1.首先在主页面添加如下js代码:

<body>
    <form id="form1" runat="server" method="post">
        <div class="container main" style="height:600px;">
            <div class="h4" style="text-align:center;">聊天室</div>
            <div id="left">
                <iframe src="List.aspx" name="left" scrolling="no" width="300px" height="460px" frameborder="0"></iframe>
            </div>
            <div id="right">
                <iframe src="Content.aspx" name="right" scrolling="no" width="860px" height="460px" frameborder="0"></iframe>
            </div>
            <div id="bootom">
                <iframe src="Bottom.aspx" name="bootom" scrolling="no" width="1170px" height="95px" frameborder="0"></iframe>
            </div>
        </div>   
        
    </form>
    <script>
        function refreshRight() {
            right.window.location.reload();
        } 
    </script>
</body>

2.在页面1发送按钮的点击事件中添加如下代码:

protected void Button1_Click(object sender, EventArgs e)
{
    ....以上为其他逻辑代码
    string parentJs = @"<script>parent.refreshRight();</script>";
    ClientScript.RegisterStartupScript(this.GetType(), "clientScript", parentJs);
}
然后就大功告成了,小伙伴们赶紧去试试吧!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值