we have a set of usercontrols complied to a dll. we could just load the controls using their classnames by like ASP.theusercontrol_ascx blah = new ASP.theusercontrol_ascx();
but if we have dynamic data and load the controls based on the filename (or the control name),
how can we load them like Page.LoadControl("TheURL/theusercontrol.ascx")
?
Thanks a lot...