This is a php board so I am not sure if anybody will help you (I will try). I do know that
http://www.aspmessageboard.com would help you
the most
From what I know when I rename a variable
var I do this:
dim var
var = Request.form("textfield")
or request.querystring("qstring")
I am not sure if you are getting from form or not I am a bit confused, you simply define it accordingly...
but then I do this
dim var2
var2 = var
Response.Write "Var 2 = " & var2 & ""
Response.write will display the value of variable 2, which = variable 1
But I might be confused, is this what you mean? If not, let me know...