I have this code which will display some on a web page for me
Code:
Sub Writeit(This,This1)
Response.Write "< strong >" & This & "< / strong > = [" & This1 & "]<br>"
end sub
so if I pass call writeit("SQL",SQL)
I get
SQL = [SELECT * FORM MYSTUFF]
is there a way so I do writeit(SQL)
i get the same out come
me just getting write the 2 value into the sub