I have an ASPX page that I want access from within a page of DNN website
the .aspx page contains several Javascript functions and code behind page contains these lines:
ClientScriptManager cs = Page.ClientScript;
script = String.Format(" jv1()");
ClientScript.RegisterStartupScript(cstype, "jvscriptxx", script, true);
I converted to user control .ASCX to use it as Modules but cannot compile it because of Page.ClientScript"
I also used the Iframe method with this link: http:\\myportal\mycustome.aspx
but I am getting an error.
Any help on how access the ASPX page othet than Iframe.
thanks,
Jean