I want to open a new window on the click of a button.
I also want to adjust the height and width of the window.
I am doing this right now:
I also want to adjust the height and width of the window.
I am doing this right now:
RadAjaxManager
.GetCurrent(this).ResponseScripts.Add("radopen('ReportViewerPopup.aspx);");
This loads a new window but I cannot adjust thr height and the width.
Also, I need to be able to pass in a parameter to the new window.I tried doing this:
RadAjaxManager
.GetCurrent(this).ResponseScripts.Add("radopen('ReportViewerPopup.aspx?ID=" + strID + ");");
But this does not load thw window.