Hi All -
I'm sure this is a simple question, but I cannot, for the life of me, figure out how to do a popup in my module. I have a control called "Edit" and I want to click a button, save something to session, and then have the Edit control pop up.
I've tried the following:
Response.Redirect(EditUrl(string.Empty, string.Empty, "Edit", string.Empty));
and
Response.Redirect(UrlUtils.PopUpUrl(DotNetNuke.Common.Globals.NavigateURL(this.TabId, "Edit", "mid=" + this.ModuleId), this, PortalSettings, true, false, 150, 465));
and
Response.Redirect(UrlUtils.PopUpUrl(EditUrl(string.Empty, string.Empty, "Edit", string.Empty), this, PortalSettings, false, true));
Can someone please give me a way to do this? I am tearing my hair out here.
Thanks