Feeds:
Posts
Comments

Archive for the ‘Uncategorized’ Category

if you facing the security issue in DNN 3.x
the only thing you can do is add an entry in web.config and run under MS.NET 2.0 runtime.
Add this entry in <system.web>
<httpCookies httpOnlyCookies=”true” requireSSL=”false” domain=”” />
Hope it helps.

Read Full Post »

If you wish to add a meta tag in DotNetNuke, here the step to do it.
Go to Admin tab –> Page –> Click the page (home tab, for instance) –> the Page Settings –> Advanced Settings –> Page Header Tags
Enter the content you require, ie. I use this feature to date each of the pages [...]

Read Full Post »

When you develop DNN Skin, always keep in mind you need to have put <%= SkinPath %> for your CSS and Images in your DNN skin development
for instance,
Put an image into the Skin, same directory with Skin ACSX but with a sub folder to put all skin’s images
<img src=”<%= SkinPath %>images/button_calendar.gif” border=”0″ alt=”Start Now” />
 Put [...]

Read Full Post »