IIS 7.5 – Parser Error Message: Could not load file or assembly Microsoft.ReportViewer.WebForms

When deploying a new application to IIS 7.5 on Windows Server 2008 R2 (test server). I got the following error: Server Error in ‘/’ Application. ——————————————————————————– Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration …

How to delete all folders in current directory

How to delete all folders in current directory using command line (cmd.exe) or batch files? How to delete all empty directories in current folder: FOR /D %f IN (*.*) DO RD “%f” How to delete all directories / folders in current directory / folder: FOR /D %f IN (*.*) DO RD “%f” /S /Q If …

CSS first-letter problem with display:inline

According to w3.org first-letter pseudo class works only with block level elements. Here is a paragraph from w3: The :first-letter pseudo-element must select the first letter of the first line of a block, if it is not preceded by any other content (such as images or inline tables) on its line. Code with label that …