I'd like to use the .net option for a DNN site somehow with a module, but I am not having much luck. As close as I have come to getting it work is like this:
I created a new page in DNN at the root. I dropped the zdat files in the root of the folder directory on the server along with the template file. I Then placed the dll in the bin folder.
The skin I used for the new search page has my general layout with this at the first line:
Then down further in the skin in my main content area is this piece
I can navigate to the page with no errors, but I have a couple problems. The search box shows up and if i manually place a query string into the url, results will display, but if I type something in the search box, the page is not updated with a new query string, it remains blank.
I am also seeing an issue with IE8 thats causing backgrounds to not display in compatability mode and in regular mode extra backgrounds are showing up...probably just a weird css thing.
Has anyone successfully integrated the .net option for Zoom into a DNN site. I know the asp/iframe option will work no problem, but I wanted to avoid asp code. It would be really awesome to find out someone is working on a zoom module
I created a new page in DNN at the root. I dropped the zdat files in the root of the folder directory on the server along with the template file. I Then placed the dll in the bin folder.
The skin I used for the new search page has my general layout with this at the first line:
Code:
<%@ Register TagPrefix="ZoomASPX" Namespace="ZoomASPX" Assembly="ZoomASPX" %>
Code:
<ZoomASPX:ASPXSearch id="ASPXSearch" runat=server/>
I am also seeing an issue with IE8 thats causing backgrounds to not display in compatability mode and in regular mode extra backgrounds are showing up...probably just a weird css thing.
Has anyone successfully integrated the .net option for Zoom into a DNN site. I know the asp/iframe option will work no problem, but I wanted to avoid asp code. It would be really awesome to find out someone is working on a zoom module
Comment