Posted 22 Jun 2012 Link to this post
Telerik.Web.UI.RadWindow objwindow =
new
Telerik.Web.UI.RadWindow();
objwindow.VisibleOnPageLoad =
true
;
objwindow.OnClientClose =
"RefreshParentPage"
objwindow.NavigateUrl =
"~/OfferManagement/CreateCounterOffer.aspx?OfferId="
+ _commandArg;
double
heightwinc = 400;
widthwinc = 900;
objwindow.Height =
Unit(heightwinc);
objwindow.Width =
Unit(widthwinc);
pnlradData.Controls.Add(objwindow);
<script type=
"text/javascript"
>
function
RefreshParentPage()
//function in parent page
{
document.location.reload();
}
</script>