QuickFix: Missing ASP.net Embedded Resource

Problem: Missing ASP.net embedded resource on remote server, but not on local dev server. Background: We embed a JavaScript file as a resource in a DLL. This JavaScript file is exposed by webresource.axd. Issue: We found that the problem was related to a mismatch in the build date of the DLL and the time on [...]

Google Website Optimizer Advanced Variations with ASP.net and JQuery/Javascript

Problem: We need to use Google Website Optimizer (GWO) to test different variations of an ASP.net contact form. We want to be able to add and remove form fields to test conversions based on the set of fields displayed. Additionally, the solution must meet some basic requirements: Use Valid XHTML Work in multiple browsers Fail [...]

Validate Multiple Instances of an ASP.net User Control

ASP.net custom validation with client side JavaScript on multiple instances of a User Control Problem: You have a page with multiple instances of a User Control that has a form that needs to be validated client side. JavaScript is not calling custom validation on the correct form because of naming conflicts. In my specific case, [...]

Dynamically Change Meta Tags in ASP.net

Well, I had a project that stumped me for a moment. I understand how to dynamically inject meta tags through System.Web.UI.HtmlControls.HtmlHead. But, what if you already have Meta Tags set? I really didn’t have a clue. So, I had to take the dreaded trip to MSDN to browse object definitions and came up with the [...]