Under used DotNetNuke Framework Methods - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T11:26:49Z http://stackoverflow.com/feeds/question/123068 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/123068/under-used-dotnetnuke-framework-methods 2 Under used DotNetNuke Framework Methods Mitchel Sellers 2008-09-23T19:02:41Z 2008-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#123429 2 Answer by Mitchel Sellers for Under used DotNetNuke Framework Methods Mitchel Sellers 2008-09-23T19:55:27Z 2008-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#219655 2 Answer by Mitchel Sellers for Under used DotNetNuke Framework Methods Mitchel Sellers 2008-10-20T19:52:42Z 2008-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>