-----父窗体------ <%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %> <%@ Assembly Name="Microsoft.Web.CommandUI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register TagPrefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register TagPrefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register TagPrefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %> <%@ Import Namespace="Microsoft.SharePoint" %> <%@ Register TagPrefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register TagPrefix="MySharePoint" Namespace="SharePointProject2" Assembly="$SharePoint.Project.AssemblyFullName$" %> <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="CaseAdd.ascx.cs" Inherits="SharePointProject2.CONTROLTEMPLATES.CaseAdd" %> <script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script> <style type="text/css"> td { min-height: 40px; } </style> <script> function openDialogAndReceiveData(tUrl, tTitle) { var options = { url: tUrl, title: tTitle, dialogReturnValueCallback: onPopUpCloseCallBackWithData }; SP.UI.ModalDialog.showModalDialog(options); } function onPopUpCloseCallBackWithData(result, returnValue) { if (result == SP.UI.DialogResult.OK) { SP.UI.Status.removeAllStatus(true); var sId = SP.UI.Status.addStatus("Data successfully populated to text boxes from Pop-up"); SP.UI.Status.setStatusPriColor(sId, 'green'); document.getElementById('<%= txtid.ClientID %>').value = returnValue[0]; document.getElementById('<%= txtLawyerName.ClientID %>').value = returnValue[1]; document.getElementById('<%= txtCountry.ClientID %>').value = returnValue[2]; document.getElementById('<%= txtCity.ClientID %>').value = returnValue[3]; } else if (result == SP.UI.DialogResult.cancel) { …