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 Mike Lewis 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
0
0
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"

_____________________________________________________________________
[sub]You can accomplish anything in life, provided that you do not mind who gets credit.
Harry S. Truman[/sub]
onpnt2.gif

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top