Browse by Tags

All Tags » .NET (RSS)
I always had the question if I could add a LiteralControl via Markup code. Let's say something like that : < div class = "header" > < asp : LiteralControl runat = "server" ID = "ltrHeader" > </ asp : LiteralControl...
How about a sneak peek  into the .NET Framework 4.0? At Steven Martin's blog you can see about  WCF και WF improvements, Dublin etc... More to come of course at PDC.. Yeaaaaah...!
Posted by djsolid | with no comments
Filed under: , , , ,
Many times I needed to set a default value for a property. For example at the property below public string Property1 {get; set;} I wanted a default value "Value1". The only way was to create a private field or to set it in code like Property1 = "Value1...
When I want to add a user control to a page I use the @Register directive at the top of the page. and the I add the control to the markup. But what if I want to add a user control programmatically but I have no reference of it via the markup? That is...
Yesterday .NET SP1 released and many new features for ASP.NET where added. But yesterday i also discovered a feature that ASP.NET has from version 2.0 Let's say we have a button. We can decide what value will the properties have for different browsers...
Many times when i develop a user control i have the need to add some javascript to the header of the page. But the header doesn't have a method where you can add script and RegisterStartupScript inserts the script at the bottom of the page. So i thought...
Yesterday was released the first preview of ASP.NET 4.0. Lot's of cool stuff come with this release and with this article i will try to demonstrate the use of templates. The example is available for download Let's start... First we have to download MicrosoftAjaxTemplates...
I have been using Shoutcast for a long time. And each and every time had to do the same stuff if i wanted to get details such as song title, current listener etc. So i decided to write a simple class library to make things easier. What you have to do...
More Posts