Archive for Luglio 29th, 2008

Web Hosting Control Panels

WebReference News Luglio 29th, 2008

Web hosting is a highly competitive field. Extra features, such as free domain names, site builder and pricing vary widely, but the control panel makes a difference and you have to pick the service which suits your requirements. By IHBO. 0701

Avoid Shutdown of a Win-Application if ‘x’ is pressed

CodeKeep C# Feed Luglio 29th, 2008

Description: This short code avoid a Shutdown of a Win-Application if the 'x' Button is pressed. You need only one line of Code in the FormClosing Event.

Link: http://www.codekeep.net/snippets/16f43fa1-99f1-48f7-8275-2e6187520aab.aspx

private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
  e.Cancel = true;
}

Use Your Blog for Fast Search Engine Rankings

WebReference News Luglio 29th, 2008

If you run a Web site and are looking to get it listed quickly with the search engines, there's no easier way than to also include a blog. By Terry Detty. 0625

Refactoring HTML: Well-Formedness - Part 3

WebReference News Luglio 29th, 2008

UTF-8 is a standard encoding that works across all Web browsers and is supported by all major text editors and other tools. It supports all Unicode characters and is a good basis for internationalization and localization of pages. By Elliotte Rusty Harold. 0623