.NET - Raj Kaimal

Browse by Tags

All Tags » .NET (RSS)

VS 2010 Beta 2 Installation instructions

For those of you that have VS 2010 Beta 1 installed. http://go.microsoft.com/fwlink/?LinkID=166199 http://go.microsoft.com/fwlink/?LinkID=167718 (addendum) Other observations: I was prompted for my VS 2010 Beta 1 media when uninstalling it so have your...
Posted by rajbk | with no comments
Filed under: , ,

XMLSerializer and invalid XML

A user had pasted some text from powerpoint into a textarea in one of our web apps which was eventually serialized into XML. Upon trying to de-serialize the XML, the web server threw the exception below: System.InvalidOperationException: There is an error...
Posted by rajbk | 5 comment(s)
Filed under: , , ,

FormView Binding Gotcha

Version: ASP.NET 3.5 SP1 When performing two way databinding, Null values and Nullables get changed to string.Empty in the FormView. The way the FormView control handles null values has caused me some grief :-( Consider a FormView bound to an ObjectDataSource...
Posted by rajbk | 1 comment(s)
Filed under: , ,

The .NET Framework 3.5 Commonly Used Types and Namespaces poster

Paul Andrew has posted a link to the .NET framework 3.5 commonly Used Types and Namespaces poster - cool stuff! Download it here . Daniel Moth also has a good older post on the .NET 3.5 bits
Posted by rajbk | 1 comment(s)
Filed under: ,

.NET Framework Libraries Source Code - License - MS-RL

When I first read Scott's post , I missed the Microsoft Reference License (Ms-RL) which the .net Framework libraries is released under. The key thing to remember is this: "Reference use" means use of the software within your company as a reference, in...
Posted by rajbk | 1 comment(s)
Filed under: ,

.NET Framework Libraries Source Code

Scott just announced that his team will be releasing the souce code to the .NET base class libraries, ASP.net, Windows Forms and WPF! The big advantage to this is that when you are stepping through the code, you no longer see the horrible "[External Code...
Posted by rajbk | with no comments
Filed under: ,

Microsoft Silverlight

I am at MIX 2007 and writing a quick post inbetween classes. Very excited about what I have seen so far regarding Sliverlight. Some things I like: Manipulate the DOM using Silverlight. Write in C# - which is way better than Actionscript ;-) Create custom...
Posted by rajbk | with no comments
Filed under: ,

Page.IsValid and Validate

ASP.net ships with a couple of validator controls that allow you to determine whether the value of the input controls they are validating is valid. Here is a simple example of a TextBox control with a RequiredFieldValidator attached and a Button control...
Posted by rajbk | 19 comment(s)
Filed under: , ,

EditorBrowsable - EditorBrowsableState.Never shows up in Intellisense

I had a property in a WebControl marked as EditorBrowsableState.Never but it was still showing up in Intellisense. After googling for a long time, I found this post with a response by Linda Liu. Speaking for C#, the EditorBrowsableAttribute attribute...
Posted by rajbk | 4 comment(s)

GridView DropDownList Pager

A way to add a dropdownlist pager to the GridView....
Posted by rajbk | 50 comment(s)
Filed under: , , ,
More Posts Next page »