Feeds:
Posts
Comments

Archive for September, 2007

If you familiar with DotNetNuke module development, we know the DotNetNuke starter kit able generate classes and user controls for developer, but what if we want to speed up the development process? This is a real pain for developer to change the file one by one to add in additional table columns, change the user [...]

Read Full Post »

When you create a new media module, it will automatic play the video/audio once the page is loaded. You will feel extreamely annoying.
You can please download the file here , I m already change the source code which disable autorun upon load the page.
(it worked for DNN4.5.5).

Read Full Post »

This post will more on Single Sign on (ss0) of DotNetNuke 4.5.5, I should thanks the DNN developer offered such good feature to public, as we do not need to spend time to develop.
Here the link :

Install Active Directory for beginners like me
Setting Up Active Directory Integration with DotNetNuke
DNN Forum for Active Directory
Intro to Active Directory and [...]

Read Full Post »

For those who wish to learn or know more about DNN module development but do not know where to start.
Here the link for you to start.

Creating a DNN Module and Understanding DNN Architectural Approach
Creating a DotNetNuke® Module – For Absolute Beginners!
Creating a Super-Fast and Super-Easy DotNetNuke® Module – for Absolute Beginners!

Before launch your visual studio.NET [...]

Read Full Post »

Recently I m google around for a free & easy to use free spell checker and I found NetSpell, the open source .NET dictionary.
It able to detect some mis-spelled wording, but some how I manage found the limitations of this spell checker, it can detect “Conversatoin” (1 error) but not “converastoin” (got 2 errors here) for instance.
If [...]

Read Full Post »

In ASP.NET 1.1, if we want to use button server control (asp:button) to trigger a javascript, we need to use add attribute to the button which shown as below,

function showHelloWorld()
{

alert(‘Hello World’);

}
private void Page_Load(object sender, System.EventArgs e)
{

myButton.Attributes.Add(“onclick”,”showHelloWorld()”);

}

In ASP.NET 2.0, we just need to use OnClientClick will do.
<asp:button runat=”server” text=”Click Me” OnClientClick=”javascript:showHelloWorld()” id=”myButton”></asp:button>

Read Full Post »

.: About :.

I will share some Technical stuffs such as C#, ASP.NET, Sharepoint, WSS, DotNetNuke in this blog. No worry, I m hate to type too, so I will write down the key point instead of writing the story. Stay tune.

Read Full Post »