-
I found out yesterday that I was renewed as a Microsoft MVP for another year! I look forward to tweeting, blogging, and writing about Microsoft .NET technologies. You can connect to me with the following: Twitter: @brianmains Linked In: http://www.linkedin...
-
I created a TWTPOLL for this very question. Please submit your opinion: http://twtpoll.com/2oqm0o . Thanks for your participation in advance.
-
friends... I have been re-awarded with 2009 Microsoft® MVP Award in .NET/ASP.NET Category. This is the second consicutive year as an MVP; and it feels like allmost full moon of my career!! The mail I received: Dear Kaushal Parik, Congratulations!...
-
When designing your applications to expose list-based data, there is a difference between styles of programming. For instance, suppose you wanted to expose a collection of objects to the consumer. This could be simply done using the following class: public...
-
Hi all … This time a great news for all the technology enthusiast and want to meet great peoples in technology and you missed TechEd India 2009 so you can attend now the same kind of event in Ahmedabad, India on June 20, 2009 Saturday(TechEd on...
-
If you've developed in JavaScript without the ASP.NET AJAX client-side additions, you know that you typically can't create an object like the following: function MyNS.MyClass() { } This is not a supported feature because of the dot notation. This...
-
We had a weird error with IE 6 in our web site. In order to figure out the issue, it required going back to IE 6, from IE 8. In order to do that, you can simply go to the control panel, add/remove programs, and unintall internet explorer. Rather than...
-
In Silverlight, there are a variety of ways to target elements in Silverlight. For instance, if we want to change the color of a border, we can target it this way: <Button x:Name="ContactButton" Content="Contact Us"> <Button...
-
You may have gotten this error when using LINQ to SQL. I personally hate this error, but surprisingly enough, out of 2 years of using LINQ to SQL, this is the first time I've gotten this (2 years later, I mean). This error happens in this scenario...
-
Reference data is a funny thing. In reality, reference data really serves no major purpose other than for display purposes, whether that be a report or in the UI. Yet we often have reference data in our backend databases, with relationships established...
-
When creating script references for AJAX controls, you may have noticed this code a lot: var r = new ScriptReference(Page.ClientScript.GetWebResourceUrl(...)); This method creates a unique URL using a custom HTTP handler that extracts scripts from within...
-
I tend to design components in a consistent way. I can be anal about this sometimes. What I like to do is name my server components the same as my client-components. This way, it becomes easier to register and describe these components in a logical way...
-
for the contestant, who only had three avenues of help, or lifelines, to survive to the next round. If the user answered a question wrong, they lost the game. Luckily, various spots on the ladder were insurances to ensure the user got at least that amount...
-
C# or VB.NET is very handy when it comes to inheritance. Because structured programming languages provide a mechanism for inheritance, they also provide a mechanism to call methods, properties, or other constructs defined in the base class, if defined...
-
ASP.NET AJAX supports inheritance in components. While easy to setup, here's a little useful information regarding the script registration/description process for you to be aware of. To start, imagine this hierarchy of components: Server ScriptControl...