Yeah… I received my Microsoft Wireless Notebook Laser Mouse 7000 finally. Thanks to Fionie for helping me bring it back from US.

Microsoft Wireless Notebook Laser Mouse 7000
I searched online and found these useful Microsoft Windows keyboard shortcuts. Here you are. Make your life easier with them. ![]()
Windows system key combinations
• F1: Help
• CTRL+ESC: Open Start menu
• ALT+TAB: Switch between open programs
• ALT+F4: Quit program
• SHIFT+DELETE: Delete item permanently
Windows program key combinations
• CTRL+C: Copy
• CTRL+X: Cut
• CTRL+V: Paste
• CTRL+Z: Undo
• CTRL+B: Bold
• CTRL+U: Underline
• CTRL+I: Italic
ASCII which known as American Standard Code for Information Interchange is a character encoding based on the English alphabet. ASCII codes represent text in computers, communications equipment, and other devices that work with text… ASCII has been incorporated into the Unicode character set as the first 128 symbols.
Find out more at http://en.wikipedia.org/wiki/ASCII
Unicode is an industry standard allowing computers to consistently represent and manipulate text expressed in most of the world’s writing systems. Unicode’s success at unifying character sets has led to its widespread and predominant use in the internationalization and localization of computer software. The standard has been implemented in many recent technologies, including XML, the Java programming language, the Microsoft .NET Framework and modern operating systems.
Find out more at http://en.wikipedia.org/wiki/Unicode
30 Jan
Posted by Jayce as Programming, Web
System.Configuration.ConfigurationErrorsException: Could not load file or assembly ‘Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a’ or one of its dependencies. The system cannot find the file specified.
Do you ever see this problem when you try to load ASP.NET web application? Well, based on the error code. It should have something related to ReportViewer. It seem like the ReportViewer component is not found.
I don’t have the problem during development at my development server. However, I faced this problem when I deploy to another machine. Why is this happening?
Here is the solution…
This should do the trick. ![]()
Do you get Parser Error Message: Unrecognized attribute ‘xmlns’ when you try to deploy web application? Line 2: <configuration xmlns=”http://schemas.microsoft.com/.NetConfiguration/v2.0″></configuration> is red in colour.
Well, it happens all the time when I deploy ASP.NET 2.0 web application on a server with both ASP.NET 1.1 and 2.0 installed. What you need to do? By selecting the correct ASP.NET version at Internet Information Services (IIS) will solve the problem.