Attributes.Add querystring

  • Thread starter Thread starter Tom
  • Start date Start date
I've tried this just about every which way...and I never get just & in my
html...

URLEncode(the whole URL) - turns just about everything to garbage
URLEncode("&")...no
URLEncode("38")...no
URLDecode("%26")...nope...I even tried URLEncode(URLDecode))...this is
crazy! Glad i'm not a rocket syuntist...
 
when u pass domain.com?query

u have to URLEncode(query)

when you read query, you don't have to URLDecode anything

try URLEncode("&") and response.write it
 
Back
Top