April 2006 - Posts

Well, most of the web designers already know what are filters when desinging their web applications and applying styles. But Im sure not much of developers aware of that. So here is a great link where you can learn how to apply styles to your buttons,div,..etc with fade effects. enjoyy...
http://msdn.microsoft.com/workshop/author/filter/filters.asp
Posted by Ludmal De Silva | with no comments
 I just developed small tool for genereating script with sql data/schema. If anybody needs that with a source code just send me a mail to ludmal@gmail.com.

Posted by Ludmal De Silva | with no comments

well, couldn’t post anything recently which is really useful, due to my work schedule [:(]. So here is a useful code snippet. You can use System.Net.Dns to get the computer name by passing the IP address.. through the network easily.

          System.Net.NetworkInformation.Ping ping = new System.Net.NetworkInformation.Ping();
        byte[] array = { 192, 168, 1, 98 };
       
        /* U can ping the system , IF U WANT....*/
        IPAddress address = new IPAddress(array);
        System.Net.NetworkInformation.PingReply reply = ping.Send(address);

        System.Net.IPHostEntry entry = System.Net.Dns.GetHostEntry(address);
        string hostName =  entry.HostName;


Posted by Ludmal De Silva | with no comments
I think this is a great feature, becuase no more errors to the client while we're uploading files to the server. All you have to do is create a app_offline.htm file and put that into the root directory. It will shut down the app and redirect all the request to the app_offline.htm file. So no more worries while we do maintanace/upgrade/upload to the server. That's really cool. I didn't knew that until i attend yesterday to the .net user group meeting.. its really worth it.. tks to merill.. and BTW, there are plenty of tips and tricks which is really helpful, you can download the presentation and demo files from the merill's web site. or click here to download.
Posted by Ludmal De Silva | with no comments
i was waiting for a long time to just check this google analytics.. soo finally today i got the invitation.. its really coooll..Now i have a great tool to track my blogs and maybe later.......
register now https://www.google.com/analytics

Posted by Ludmal De Silva | with no comments