Works well, measured in bytes. Technorati Tags: perfmon,bandwidth,debugging
Configuring ASP.NET MVC on IIS6
http://blog.stevensanderson.com/2008/07/04/options-for-deploying-aspnet-mvc-to-iis-6/ Technorati Tags: aspnet,mvc,iis
Sharepoint related upload problems
There was a slight issue with uploading documents larger than 28 MB on Windows Server 2008. This Microsoft knowledgebase article helped me resolve it. http://support.microsoft.com/kb/925083 Technorati Tags: sharepoint,windows
Observer pattern in Javascript
The observer pattern is extremely powerful in many cases where you want to have a Javascript class “listen” to another object. The class or object attaches to a Subject and waits an…
JQuery & JSONP
http://jasonkelly.net/archive/2009/02/24/using-jquery-amp-jsonp-for-cross-domain-ajax-with-wcf-services.aspx Technorati Tags: json,jsonp,jquery,javascript
BlogEngine.NET custom captcha
One of the biggest flaws with my blog was that there was no CAPTCHA ("Completely Automated Public Turing test to tell Computers and Humans Apart.) Wikipedia article here. I was getting comment…
Building a custom ORDER BY clause from a WHERE IN clause
I ran across a pretty interesting requirement. Be able to sort something off a CSV list of items. In this case we have a comma separated string we are using for an…
Get SQL Table Sizes
Very powerful script for determine table sizesm the original blogger http://www.mitchelsellers.com/blogs/articletype/articleview/articleid/121/determing-sql-server-table-size.aspx DECLARE @TableName VARCHAR(100) –For storing values in the cursor –Cursor to get the name of all user tables from the sysobjects…
Use COALESCE to create a CSV
This has proved time and again to be a useful method of creating a datafeed. DECLARE @EmployeeList varchar(100) SELECT @EmployeeList = COALESCE(@EmployeeList + ‘, ‘, ”) + CAST(Emp_UniqueID AS varchar(5)) FROM SalesCallsEmployees…
Debug VBScript in EditPlus
See the below screenshot for configuring. Technorati Tags: vbscript,debugging