execute string

mihaslo

Newcomer
Joined
Jul 25, 2005
Messages
2
Hy!

I am new to asp.net; using aspcompat=True. I have problem with execute() - for example:

For Each Field in Request.querystring
TheString = "qs" &Field & "=Request.querystring(""" & Field & """)"
execute(TheString)
Next

how to execute string in asp.net? Tnx for advice.

Miha
 
kahlua001 said:
You dont have to use it

strTest = "qs" & Request.Querystring("blah")


This is enough.

Think you didn't understood my problem. I wanna collect all the qs or forms or cookies and store then into variables. It saves time when programing.

miha
 
Back
Top