To some I may be stating the obvious, but today I was happy to find out that C# lets you set a different access level on the get and set for a property. The example below will help to illustrate what I’m talking about: public DateTime UpdateDate { get { object data = ViewState["UpdateDate"]; return [...]
Archive for February 25th, 2006
Access modifiers on property get/set
Posted in Everything, Software Development, tagged C#, Code on February 25, 2006 | 2 Comments »
Embedding Windows Media and Quicktime into ASP.NET pages
Posted in Everything, Software Development, tagged ASP.NET, Web Development, Windows Media on February 25, 2006 | 14 Comments »
I know there are numerous web sites and blogs about this subject. Since I had to write some code for “Fred” to render on-line video, and embedding video in web pages can be somewhat fiddly to get right, I figured I’d blog the C# code for my future reference. If hosting on-line video in your [...]
