Tired of those spam emails....if you use this websites tools, you could eventually get a profile setup from the sender and be able to block the sender altogether. Its not fail-proof, but with enough time and logging, you can block em.
Link: http://www.dreamincode.net/forums/index.php?automodule=blog&blogid=216&showentry=1965
This is a code snippet for a gradiant border setup for Silverlight 2, or 3. I am using it as a basis for forms and for my use i have made a variant but just the same it works.
Link: http://www.dotnetspider.com/resources/22024-Digital-clock-asp-net-using-c-coding.aspx
Here is a good demo of how to implement a active digital clock to a website.
Digital Clock from dotnetspider
one of things i added is the formatting of the output.
My usage of the format was:
Dim time As String = String.Format("{0:ddd MM/dd/yyyy HH:mm:ss (zzz G\MT)}", DateTime.Now)
which would output:
Mon 10/29/2009 13:45:23 (-05:00 GMT)
You will find a very useful snippet of code for us that develop websites (blogs, wiki's, etc) for the ASP.Net framework. I personally use VB for interface stuff but C# for common-use code (dll's).