程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> .NET中利用js讓子窗體向父頁面傳值的實現方法

.NET中利用js讓子窗體向父頁面傳值的實現方法

編輯:ASP.NET基礎

子頁面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>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved