September 2009 - Posts

.NET University is Live

Doug Turnure and Mark Dunn just reopened the .NET University site.  This resource includes approximately 40 developer-oriented presentation kits that include slides, speaker notes, demos, demo scripts and webcast videos. You can use these materials in your own presentations, or simply access the valuable information that they contain.

DotNetU_Logo

So, what do you waiting for? :)

Share this post: | | | |
Posted by agung | with no comments

Selamat Hari Raya Idul Fitri 1430 H

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 

namespace IdulFitri 
{ 
    class Message1 
    { 
        public int Key; 
        public string Greeting1; 
    } 

    class Message2 
    { 
        public int Key; 
        public string Greeting2; 
    } 

    class Program 
    { 
        static void Main(string[] args) 
        { 
            var messages1 = new List<Message1>() 
            { 
                new Message1 { Key=1, Greeting1="Selamat" }, 
                new Message1 { Key=2, Greeting1="Hari" }, 
                new Message1 { Key=3, Greeting1="Raya" }, 
                new Message1 { Key=4, Greeting1="Idul Fitri" }, 
                new Message1 { Key=5, Greeting1="1 Syawal 1430H" } 
            }; 

            var messages2 = new List<Message2>() 
            { 
                new Message2 { Key=1, Greeting2="Mohon" }, 
                new Message2 { Key=2, Greeting2="Maaf" }, 
                new Message2 { Key=3, Greeting2="Lahir" }, 
                new Message2 { Key=4, Greeting2="dan" }, 
                new Message2 { Key=5, Greeting2="Bathin" }, 
            }; 

            var msg = from m1 in messages1 
                      join m2 in messages2 on m1.Key equals m2.Key 
                      select new { m1.Greeting1, m2.Greeting2 }; 

            foreach (var m in msg) 
            { 
                Console.WriteLine("{0} {1}", m.Greeting1.PadRight(15, ' '), m.Greeting2); 
            } 

            Console.ReadLine(); 
        } 
    } 
}

 

OUTPUT:

----------------------------------

Selamat          Mohon 
Hari             Maaf 
Raya             Lahir 
Idul Fitri       dan 
1 Syawal 1430H   Bathin  


Salam.

:)
Share this post: | | | |
Posted by agung | with no comments
Filed under:

Customizing Windows XP into Windows 7 Without Using Customization Pack

Yes, you can do that!

Please follow the instruction from this link.

Hope this help.

Share this post: | | | |
Posted by agung | with no comments

DotNetNuke 4.9.5 dan 5.1.2 release

Segera upgrade website DotNetNuke Anda ke versi terbaru.

Apa yang di update? Berikut saya ambil dari blog Joe Brinkman:

DotNetNuke 4.9.5

Major Highlights

    * Fixed issue which caused the starter kit not to install properly
    * Fixed issue where cache was not working properly for web crawlers

Security Fixes

    * HTML/Script Code Injection Vulnerability in ClientAPI
    * HTML/Script Code Injection Vulnerability when operating with multiple languages

Updated Modules/Providers

The following modules and providers have been updated in the 4.9.5 packages.  Please see the specific project pages for notes on what bugs or enhancements were corrected with each release.
Modules

    * HTML 04.09.05
    * Events 05.00.02

Assemblies

    * WebControls 02.02.00
    * ClientAPI 04.01.02

Providers

    * none

DotNetNuke 5.1.2

Major Highlights

    * Fixed issue which caused modules not be properly upgraded to 5.x if they were missing a manifest file
    * Fixed issue where register link on the login module did not work when portal was configured for private membership
    * Fixed issue where en-US language was always enabled after an upgrade
    * Fixed issue where the language pack writer was not creating full language packs.
    * Re-added the PageStatePersistence setting to the Host Settings page with additional warning messages.
    * Fixed breaking change in ActionBase where properties were inadvertently removed instead of being marked obsolete.
    * Fixed issue where User settings were relying on default values, but the email API was not aware of the defaults.
    * Fixed issue where the HasObjectDependencies property of ScheduleItem was not properly calculated.

Security Fixes

    * HTML/Script Code Injection Vulnerability in ClientAPI
    * HTML/Script Code Injection Vulnerability when operating with multiple languages

Updated Modules/Providers

The following modules and providers have been updated in the 5.1.2 packages.  Please see the specific project pages for notes on what bugs or enhancements were corrected with each release.
Modules

    * HTML 05.01.03
    * Events 05.00.02

Assemblies

    * WebControls 02.02.00
    * ClientAPI 04.01.02

Providers

    * none

Tunggu apa lagi? Download DISINI.

Share this post: | | | |
Posted by agung | with no comments
Filed under: