-
Here is a handy scripts that I wrote to set up virutal directory. It accepts one parameter to run the script. The script basically stops “Default Web Site”, creates “Receiver” as its virtual directory under “Default Web Site”, and finally starts the ...
-
A very nice little program that you can use to send emails. The only thing you need is that remote SMTP server name, your username and password on the server. Don’t mess up the email, you can always be traced if you abuse your recipient. < %@LANGUAGE...
-
Debugging is an important skill in software development. Developers used to debug in one run time environment, such as within Visual Studio for C++/C# or Visual Cafe/Forte for Java. How about cross boundary debugging? There can be many interpretations...
-
Open to read a document, readers see the words, characters. It essentially bits or byts on the machine level. How to write a document into bytes and read bytes into documents is actually easy with the helps of .NET library. Here is an example with SA...
-
Singleton Pattern ensures a class has only one instance, and provides a global point of access to it. It is different from global variable. Objects might be created once the application starts. It may ends up the application does not use the object. It...