By tag: paulhayman
0
kicks
Microsoft XNA (Beta) Released
Microsoft have released Microsoft XNA Game Studio Express (Beta). With all the hype surrounding this release we should be in for a real treat! Are Microsoft going to corner the market by releasing tools which enable developers to write their own games? Should Sony be worried?
0
kicks
Creating a Tag Cloud in C#
I wanted to add a TagCloud to GeekZilla. The first thing I did was look around the web for some examples (or free components). To my supprise none jumped out at me. So, I decided to write my own.
0
kicks
The null coalescing operator: ??
Lots of people discovering this new feature in c# 2.0. It's pretty handy. The null coalescing operator is a short cut for checking if a value is null and if so returning the value of the second operand
0
kicks
Custom Templated SiteMap Navigator Control
After discovering the power of the SiteMap, especially when linked to Authentication, it wasn't long before binding the TreeView to the map was not enough.
I needed to have total control over what was displayed to the user for each item, so I wrote a Templated SiteMap navigator control. It works...
0
kicks
Affiliate Tracking - Redirect a page using a Header
Any keen surfer will be familiar with Affiliate Marketing, its a huge industry with Google's Adwords driving "Pay Per Click" campaigns. Google provide the Adwords application and Google Analytics to track the effectiveness of marketing campaigns from click through, to page view, lead gener...
0
kicks
Restricting the number of rows in a dataview when binding to a repeate
Using IEnumerable to limit the number of rows in a DataView when binding to a repeater.