 |
Select a row in an asp:GridView without using a Select Command
Paul Marshall (77592 views)
Select a row in an asp:GridView without using a Select Command
ASP.Net's GridViews can be quite useful, but beware of binding them to huge datasets as this has an overhead on the ViewState.
Often you'll want to display a number of columns on each line and row space becomes an issue. What's
|
 |
DateTime.ToString() Patterns
Paul Hayman (72203 views)
DateTime.ToString() Patterns
All the patterns:
||0|| MM/dd/yyyy|| 08/22/2006 ||
||1|| dddd, dd MMMM yyyy|| Tuesday, 22 August 2006 ||
||2|| dddd, dd MMMM yyyy|| HH:mm Tuesday, 22 August 2006 06:30 ||
||3|| dddd, dd MMMM yyyy|| hh:mm tt Tuesday, 22 August 2006 06:30 AM ||
||4|| dddd, dd
|
 |
Create your own torrent download server using uTorrent - Part1
Paul Marshall (44993 views)
Create your own torrent download server - Part 1
Background
Thursday 26th Novemember saw my media server (an old desktop running XP SP2) give up on me. The harddisk that the OS was installed on was corrupt with a boot becoming impossible because some of window's key files like HAL.dll wer
|
 |
"This row already belongs to another table" Error
Paul Marshall (34605 views)
"This row already belongs to another table" Error
#$#<a href="http://www.dotnetkicks.com/kick/?url=http://www.geekzilla.co.uk/View37EB5230-5B79-4D00-800C-52D7A46CFB15.htm"><img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http://www.geekzilla.co.uk/View37EB5230-
|
 |
Increase your Virtual machine's disk size
Paul Marshall (34482 views)
Increase your Virtual machine's disk capacity
Background
The geekzilla team have been using VMWare for over a year now for desktop virtualisation. There are loads of benefits of virtualisation, but the most obvious one for me is increased stability.
For years I had a single machine wit
|
 |
Launching an Atlas ModalPopupExtender from JavaScript
Paul Hayman (28524 views)
Launching an Atlas ModalPopupExtender from JavaScript
{Looking for an '''Ajax version''' of this article??}http://www.geekzilla.co.uk/View38736C2B-BAD3-418A-A5B0-DAC4F1A5A83A.htm
Looking round the web there are some crazy ways people are trying to launch the ModalPopupExtender from JavaScrip
|
 |
Create your own torrent download server - Part 2
Paul Marshall (28200 views)
Create your own torrent download server - Part 2
{Creating a torrent server - Part 1}http://www.geekzilla.co.uk/View838302ED-E806-4314-AC3A-89872D6F8C9B.htm
Okay, if you've got [uTorrent] running and accessible via a browser (locally and remotely) we're ready to install it as a Windows Servi
|
 |
Select Column Information using SQL Server
Dave Howard (27116 views)
Select Column Information using SQL Server
#$#<a href="http://www.dotnetkicks.com/kick/?url=http://www.geekzilla.co.uk/ViewF3E9658C-7B7A-472C-BE4A-5C25CD26C0E8.htm"><img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http://www.geekzilla.co.uk/ViewF3E9658C-7B7A-472C
|
 |
Creating a Tag Cloud in C#
Paul Hayman (22731 views)
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.
At first I found myself wondering how I would render different size w
|
 |
Using Regular Expressions to validate a filename in a FileUpload control
Paul Hayman (16168 views)
Using Regular Expressions to validate a filename in a FileUpload control
Here's a little code snippet I use to ensure that the file that has been uploaded is of type JPG, JPEG, PNG or GIF
#c#// check anything has been uploaded
#c#if (ThumbnailImageUpload.PostedFile.ContentLength > 0)
#c#{
|