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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

rs2("Keywords") = request.Form("Keyword01")......

Status
Not open for further replies.

JeroenB

Programmer
Apr 8, 2001
93
BE
Hi,

can someone help me with this one;
I have three input text boxes in my asp page (with the names : Keyword01, Keyword02, Keyword03).
Now, I want that the value of this boxes is updated in my MS Acces table.
In other words in the field Keywords of my table I should get the value : "value of Keyword01"|"value of keyword 02"|"value of keyword 03". (so just 1 string)
It should be possible to just fill in keyword 01 and keyword 03...

Thanks inadvance
JeroenB
 
dim cMyString

cMyString = request.form("keyword01") & "|" &_
request.form("keyword02") & "|" &_
request.form("keyword03")


. . . and then you update the field keywords with cMyString.


br
Gerard
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top