Blog - .NET, ASP.NET, AJAX, Ruby and more

Category Archives: .NET

Microsoft Announces Visual Studio 2010 and .NET 4.0

Yesterday, Monday, September 29th, Microsoft announced the next version of Visual Studio and the .NET Framework.  For even more information on this, September 29th – October 3rd is Visual Studio Team System 2010 week on Channel 9. Microsoft has been busy this week announcing exciting changes, and Visual Studio 2010 and .NET 4.0 is certainly [...]

Also posted in News | Tagged , | Comments closed

jQuery and Visual Studio

Cool Stuff! Microsoft has announced that they will be shipping jQuery with Visual Studio going forward.  For more information on this announcement, you can refer to Scott Guthrie’s or Bertrand Le Roy’s announcement.  It will be licensed under the MIT license (as it is now) and will not be altered from the original source.  The [...]

Also posted in ASP.NET, JavaScript, jQuery, News | Tagged , , , | Comments closed

Get and Set Properties using .NET Reflection

Introduction I would like to set the text value on a textbox control. It sounds easy enough. First, I would like to create a textbox web control then I would like to access one of its properties “Text” and set the text to “Hello World”. Well what do you need to do to write your [...]

Also posted in C#, Reflection | Tagged | Comments closed

ASP.NET AJAX Page Methods

Technorati Tags: Page Methods,UpdatePanel,AJAX,ASP.NET If you’ve read things of mine, such as my Wrox Blox Hands On ASP.NET AJAX Control Toolkit, or posts on the ASP.NET Forums, you may have noticed I talk about using ASP.NET AJAX Page Methods lots of the time.  Lots of developers using ASP.NET AJAX overuse the UpdatePanel, or use it [...]

Also posted in AJAX, ASP.NET, C#, JavaScript, WCF, Web Services | Tagged , | Comments closed

C# 3.0 – Auto-Implemented Read-Only Properties

Technorati Tags: C# This isn’t a new topic by far, but I still encounter the question of how to implement a read-only auto-implemented property, so here it goes. As I’m sure you are aware, C# 3.0 has a wonderful feature known as auto-implemented properties (sometimes referred to as Automatic Properties).  These clean up our code [...]

Also posted in C# | Tagged , | Comments closed