• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

.NET中利用js让子窗体向父页面传值的实现方法

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

子页面C#后台代码:

复制代码 代码如下:

/// <summary>  
     /// 将设置好的值赋给父页面  
     /// </summary>  
     /// <param name="count">需要传递的值</param>  
     void SetValueToParentPage(int count, string strPersons) 
     { 
         StringBuilder jsStr = new StringBuilder(); 
         jsStr.Append(" var retValue = new Object();"); 
         if (count == 0) 
         { 
             jsStr.AppendFormat("retValue = null;"); 
         } 
         else 
         { 
             jsStr.AppendFormat("retValue.Nums='{0}';", count); 
             jsStr.AppendFormat("retValue.Names='{0}';", strPersons); 
         } 
         jsStr.Append("window.returnValue = retValue;window.close();"); 

         ClientScript.RegisterStartupScript(GetType(), "close", jsStr.ToString(), true); 
     } 


父页面前台js:
复制代码 代码如下:

function OpenPerChoose(url) { 
          var openobj = window; 
          if (typeof (window.dialogArguments) == "object") { 
              openobj = window.dialogArguments; 
          } 
          var returnValue = showPopWin(url, 800, 600, openobj); 
          if (returnValue != null) { 
              document.getElementById("<%=txtQualifiedNums.ClientID %>").value = returnValue.Nums; 
          } 
      } 


复制代码 代码如下:

//弹出窗口  
function showPopWin(url, width, height, returnFunc) { 
    width = parseInt(width) + 30; 
    height = parseInt(height) + 30; 
    return window.showModalDialog(url + "&Datetime=" + GetTime(), document, "dialogWidth:" + width + "px;dialogHeight:" + height + "px;help:0;status:0;scroll:auto;center:1;resizable:1;"); 


  <th style="width: 100px;">
                培训合格人数:
            </th>
            <td style="width: 50px;">
                <asp:TextBox ID="txtQualifiedNums" runat="server" Width="50px" ReadOnly="true"></asp:TextBox>
            </td>


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ASP.Net页尾中添加JavaScript的最佳方法实战分享发布时间:2022-02-05
下一篇:
throw的一些用法发布时间:2022-02-05
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap