Scotty's multi-skin MOD is the best out there, IMHO, but I made one change. In the code section at the bottom of the default.asp, I added a check for the user's currently selected skin, so the drop box matches what is picked. Not really important, but it looks nice to my OCD ridden eyes. LOL.
if cint(intLoggedInUserSkin) = intCurrentRecord Then Response.Write( vbCrlf & " <option selected value=""" & intCurrentRecord & """>" & _ sarySiteSkins(intCurrentRecord, 1) & "</option>") else Response.Write( vbCrlf & " <option value=""" & intCurrentRecord & """>" & _ sarySiteSkins(intCurrentRecord, 1) & "</option>") end if next
|