Categories
Command Prompt

Identify members of local groups using Command Prompt

To list members of the Power Users group (You must include the quotation marks.): net localgroup “power users” To list members of the Users group: net localgroup users To list members of the Administrators group: net localgroup administrators

Categories
XML

XML Path Language – XPath

It is the result of an effort to provide a common syntax and semantics for functionality shared between XSL Transformations (XSLT) and XPointer (XPointer). Useful information I’ve found on XPath: XPath (Version 1.0) XPath Support in ElementTree

Categories
ASP.NET VB.NET Visual Studio

.NET 2.0 – Event validation fails when postback occurs before a page is rendered completely

http://support.microsoft.com/kb/969548 Solution: Upgrade the system to the .NET Framework 2.0 SP2 or the .NET Framework 3.5 SP1. Other information related to this issue.

Categories
Miscellaneous

Tools to analyze Java heap

HeapAnalyzer – A graphical tool for discovering possible Java heap leaks. IBM Pattern Modeling and Analysis Tool for Java Garbage Collector – A tool that parses verbose GC trace, analyzes Java heap usage, and recommends key configurations based on pattern modeling of Java heap usage.

Categories
Miscellaneous

GNU Wget

GNU Wget is a free network utility to retrieve files from the World Wide Web using HTTP, HTTPS and FTP.

Categories
IIS

Reporting tool for Microsoft IIS

Admin Report Kit (ARKIIS)

Categories
ASP ASP.NET IIS

“HTTP Error 404 – File or Directory not found” error message when you request dynamic content with IIS 6.0

I ran across this problem with an ASP page and found a solution on the Microsoft Support site. Symptoms: Active Server Pages (ASP) page, ASP.NET page, Internet Services API (ISAPI) application, or Common Gateway Interface (CGI) application on a Windows Server 2003 server running Internet Information Services (IIS) 6.0, give the following error messages: HTTP […]

Categories
SQL SQL Server

SQL 2005 Stored Procedures Last Modify Date

USE Database –Change to the database you want to use SELECT name, create_date, modify_date FROM sys.objects –User defined objects system view WHERE type = ‘P’ –Only return stored procedures AND modify_date > ‘2009-09-01’ –If you aren’t looking for a specific data range, take this line out ORDER BY modify_date DESC Read sys.objects documentation Also read […]

Categories
ASP.NET C# Visual Studio

.NET ToString Format Specifiers

Standard Numeric Format Specifiers (C) Currency: . . . . . . . . ($123.00) (D) Decimal:. . . . . . . . . -123 (E) Scientific: . . . . . . . -1.234500E+002 (F) Fixed point:. . . . . . . -123.45 (G) General:. . . . . . . . […]

Categories
SQL Server

Five Database Design Errors To Avoid

Source: Simple-Talk Common Lookup Tables Always use separate tables for each logical entity, identifying the appropriate columns with correct types, constraints and references. It is better to write simple routines and procedures to access and manipulate the data in the tables without aiming for “dynamic code”. Common lookup tables have no place in sensible database […]