Under used DotNetNuke Framework Methods - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T11:26:49Zhttp://stackoverflow.com/feeds/question/123068http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/123068/under-used-dotnetnuke-framework-methods2Under used DotNetNuke Framework MethodsMitchel Sellers2008-09-23T19:02:41Z2008-10-20T19:52:42Z
<p>With the nature of DNN and the limited documentation, I find Hundredreds of "undocumented" features that are really helpful items that can improve productivity and reduce development time, what tips/tricks are the most common ones you use to help reduce development time when using DotnetNuke.</p>
http://stackoverflow.com/questions/123068/under-used-dotnetnuke-framework-methods/123429#1234292Answer by Mitchel Sellers for Under used DotNetNuke Framework MethodsMitchel Sellers2008-09-23T19:55:27Z2008-09-23T19:55:27Z<p>I find the ability to quickly add a Delete confirmation in DNN very helpful! The syntax requires less typing than normal.</p>
<pre><code>ClientAPI.AddButtonConfirm(testButton, Localization.GetString("Test", this.LocalResourceFile));
</code></pre>
http://stackoverflow.com/questions/123068/under-used-dotnetnuke-framework-methods/219655#2196552Answer by Mitchel Sellers for Under used DotNetNuke Framework MethodsMitchel Sellers2008-10-20T19:52:42Z2008-10-20T19:52:42Z<p>Use of the <a href="http://www.cto20.com/cto20/tabid/647/EntryId/46/DNN-Best-Kept-Secrets-Part-1-DNN-Paging-Control.aspx" rel="nofollow">DNN Paging Control</a> to implement Search Engine Friendly paging in custom modules. SImply set a few values are you are good to go.</p>