Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

can request.form("abc") be changed ?

Status
Not open for further replies.

blexman

Programmer
Jul 18, 2001
34
CA
can you do this :

request.form("abc")=""
or
request.form("abc")="whatever"
 
no
but you can do this
Dim str
str = request.form("abc")

str = ""
or
str = "whatever"

_____________________________________________________________________
You can accomplish anything in life, provided that you do not mind who gets credit.
Harry S. Truman

onpnt2.gif

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top