I want to know form where page loads html…
For example, in my developing page I find this code
<div id="dnn_NavPane"><a name="alo"></a>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
//some code here
</table>
</div>
In sources I find that .ascx file, in which I see only this
<div runat="server" id="NavPane"></div>
So I about 2 hours can’t find from where he feel div with that content? How can I find that code?
Here they used DotNetNuke and maybe secret is in that? Who can help?
When your DotNetNuke skin has a
<div />that isrunat=server, that gets transformed into a “pane.” DotNetNuke allows you to add modules to the pane, so you’d need to see what module is in there to see how its markup is being generated. It will probably be somewhere in the website’sDesktopModulesfolder, and you can look it up in the “Module Definitions” or “Extensions” page (depending on the version of DNN) to see more information about a module.If you don’t have access to the running website, the assignment of a module to a pane is stored in the database. You’ll want to find the page in the
Tabstable, then check the entries in theTabModulestable to see what module is in that pane on that tab. From there, followTabModulestoModulestoModuleDefinitionstoModuleControlsto see which control is generating the markup.