Sign In
Donkblog
Adventures into the world of amateurgramming. I'll leave the programming to the professionals.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NET
Apple
Development
iPhone
Microsoft
Performance
Process
Visual Studio
Win32
Windows
Windows Live
Windows Live Writer
Zemanta
Archive
Archives
August 2009
(1)
May 2009
(6)
April 2009
(10)
March 2009
(1)
January 2009
(1)
December 2008
(3)
November 2008
(1)
September 2008
(1)
August 2008
(2)
June 2008
(1)
May 2008
(2)
April 2008
(2)
March 2008
(13)
February 2008
(4)
March, 2008
MSDN Blogs
>
Donkblog
>
March, 2008
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Donkblog
Test Post With Picture
Posted
over 4 years ago
by
MSDNArchive
1
Comments
Just trying a test post with a picture, most people can ignore. Though, for those of you wondering, this is a picture of the construction on MS campus.
Donkblog
Data Portability – I Guess It Wasn’t All Paperwork After All
Posted
over 4 years ago
by
MSDNArchive
0
Comments
Windows Live has teamed with Facebook, Bebo, Tagged, LinkedIn, and Hi5 to share contact information through some API. This should make it easy to invite friends from one network to another without the networkings screen scrapping each other. ...
Donkblog
.NET Is NOT Magic But It Is Darn Close - Integer Overflows
Posted
over 4 years ago
by
MSDNArchive
1
Comments
Integer overflows happen when an operation is performed on an numeric type that causes it to go over its max value or below its min value. Integer oveflows can sometimes lead to security exploits when not taken care of properly. .NET doesn...
Donkblog
GetType() or 'is' keyword?
Posted
over 4 years ago
by
MSDNArchive
2
Comments
Sometimes you might run into a case where you want to know the type of an object you are dealing with. When someone first faces this situation they find two ways to solve this problem. They can use GetType() or they can use the 'is' keyword...
Donkblog
Not All Code Render Blocks Are Created Equal - Part 1
Posted
over 4 years ago
by
MSDNArchive
1
Comments
There are 2 types main types of render blocks . On one hand there are <%= %> style render blocks that are the more general type and allow the coder to print out directly to the html. And on the other hand there is the <%# %> style...
Donkblog
Wow, That's Pretty and Easy - AutoUpgradeEnabled for Open File Dialog
Posted
over 4 years ago
by
MSDNArchive
2
Comments
When you use the OpenFileDialog to allow your users to select files there are actually different styles the window might look like. When using .NET and running on Vista you can see there is quite a difference. The picture on the left is a...
Donkblog
Assembly Version - Odds and Ends
Posted
over 4 years ago
by
MSDNArchive
1
Comments
What's the Assembly Version Good For? Using assembly version is a wonderful way for someone to help maintain and support their applications. It is defined in the AssemblyInfo.cs file through an attribute. You can manually update it...
Donkblog
PathInfo - Url Rewriting for the Simple
Posted
over 4 years ago
by
MSDNArchive
0
Comments
Request.PathInfo gives you what is past the file name but before '?' which starts the query string. So instead of doing www.foo.com/bar.aspx?var1=value you could do www.foo.com/bar.aspx/var1/value . This helps a lot with SEO because search...
Donkblog
Lazy Loading for the Lazy Coder
Posted
over 4 years ago
by
MSDNArchive
1
Comments
Lazy loading in properties is very common. It is a relativity simple concept of only loading the data you once you actually need it, instead of front loading it all. Though the problem with doing this all over the place is that you end up...
Donkblog
Url Encoding, It's Not Just For Breakfast Anymore
Posted
over 4 years ago
by
MSDNArchive
3
Comments
I overheard two of my coworkers the other day talking about it and I actually ran into it myself the other day. What am I talking about? Its the common practice to use encode urls spaces as '-' when the standard says they should be '+'. For example...
Donkblog
Singularity Is Now Shared Source!
Posted
over 4 years ago
by
MSDNArchive
1
Comments
Singularity the C# operating system with many new and cool ideas. And it has finally gone shared source. They threw the code up on on codeplex under the Microsoft Research License Agreement which is for academic non-commercial use. I...
Donkblog
The Dangers Of Exception Based Logic Part 2 - Filesystem Interaction
Posted
over 4 years ago
by
MSDNArchive
5
Comments
I have often time seen filesystem interaction code that heavily depends on exception handling. Code out in the wild rarely exposes this problem in such a trivial way as my example code below, but just wanted to give another example. ...
Donkblog
The Dangers Of Exception Based Logic Part 1 - Parsing Integers
Posted
over 4 years ago
by
MSDNArchive
3
Comments
Exception based logic is one of those things that actually makes me cringe when I see it. Often times it is really easy to avoid like in the case below. Believe it or not, exceptions in .NET aren't cheap and shouldn't be taken for granted...
Page 1 of 1 (13 items)