Tuesday, November 6, 2012

Refresh parent page on close of Window showModalDialog

Parent Page :
<head runat="server">
<script type="text/javascript" language="javascript">

function EditParent()
{    
var uid=document.getElementById('<%=hdnUserId.ClientId%>').value
var id=document.getElementById('<%= hdnId.ClientId %>').value
                        window.showModalDialog("childpage.aspx?childid="+id+"&UserId="+uid,"childpage","dialogHeight: 500px; dialogWidth: 800px; dialogTop: 200px; dialogLeft: 150px; edge: Raised; center: Yes; resizable: Yes; status: Yes;scroll: No");
               
}

</script>
</head>

Child Page:

<head runat="server">

<base target="_self"></base>

</head>


No comments:

Post a Comment