I came across this gem today when I was rolling out an upgrade for one of our legacy web sites.
try {
if(Request.QueryString.Get("skin").Length > 0)
sSkinCode = Request.QueryString.Get("skin");
else
sSkinCode = GetSiteName();<
}
catch {
sSkinCode = GetSiteName();
}
Can anyone see what is wrong with this? Wanna guess where my code is failing? Hope there is no exceptions thrown in GetSiteName().
Doh!
Till next time,
Posted
11-13-2007 1:57 PM
by
Derik Whittaker