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 [...]
Archive for September, 2007
Speed up DNN Module Development with MyGeneration
Posted in ASP.NET 2.0, DotNetNuke v4, MyGeneration, tagged ASP.NET 2.0, DotNetNuke 4.5 on September 26, 2007 | Leave a Comment »
DNN’s Media Module – How to stop Video/Audio playback until user clicks play
Posted in ASP.NET 2.0, DNN Module Development, DotNetNuke v4, dnn, dotnetnuke, tagged DNN Media on September 25, 2007 | 2 Comments »
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).
DotNetNuke 4.5.5 integrated witn Active Directory
Posted in ASP.NET 2.0, Active Directory, DotNetNuke v4 on September 20, 2007 | 2 Comments »
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 [...]
DotNetNuke Module Development
Posted in ASP.NET 2.0, DotNetNuke v4 on September 19, 2007 | Leave a Comment »
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 [...]
Free Spell Checker for .NET application?
Posted in ASP.NET 2.0, Open Source on September 18, 2007 | Leave a Comment »
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 [...]
Call Javascript from ASP.NET 2.0 button click
Posted in ASP.NET 2.0 on September 13, 2007 | Leave a Comment »
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>
.: About :.
Posted in Non Technical on September 12, 2007 | Leave a Comment »
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.