Feeds:
Posts
Comments

Archive for August, 2008

Thats 2 ways i found for DNN Module Localization,
first is using ResourceKey without involve Code Behind in ACSX, example code
<asp:Label Id=”lblPageTitle” runat=”server” ResourceKey=”lblPageTitle”/>
Another way is using Code Behind, sample code is
ASCX page,

<asp:Label Id=”lblPageTitle” runat=”server”/>

Code Behind,

lblPageTitle.Text =

Localization.GetString(“lblPageTitle”, this.LocalResourceFile); 

Read Full Post »

Seem like another DNN developer already created the C# compiled module Starter Kit for DNN4.x, this is very useful for those who want to develop the DNN module without open the DotNetNuke Project.
Here the link for you to download the starter kit.

Read Full Post »