Ask a Question related to ASP Database, Design and Development.
-
kelvinfun #1
A SIMPLE QUESTION
HI,
I am first time with ASP and SQL 2000, here is the
question hope you can help me
form.html is for me to input data
ID PRICE
1 123
2 456
3 789
inputprocess.asp to input to SQL
id = request.form("ID") -NOT WORK
price = request.form("price") -NOT WORK
Is the problem I don't know how to make a loop or Array to
store the 1, 2, 3.........so on ?
Can any body tell me some hints or sample code, and it can
update to SQL server
Thanks
Kelvin
kelvinfun Guest
-
Need Simple Answer to Simple Contribute/Firefox question
Hello all; I've tried the Adobe help in CS3, tech support, phone support, this forum, other forums, Mozilla, and nowhere can I get a straight... -
simple question
Hi there, As an absolute beginner I have a simple question. I have a scene with two layers. Layer 1 should start again at frame 1 while Layer 2... -
SImple question?
Can anyone please tell me how to keep 2 windows open so that as soon as I click on one of them, the other one does not minimise and have to be... -
another simple question.
select from db where id = 3... if it doesn't exist, how can i display a message saying so. for example: "3" is not a valid selection. ... -
A simple question but ..
Hi Can someone give me a link where i can see (and do it my self) how to create a shape tweening? (Flash MX) Yes i am a newbie but want to learn... -
Ken Schaefer #2
Re: A SIMPLE QUESTION
If all your form elements are called "ID" and "Price", then you could do
something like:
For i = 0 to Request.Form("ID").Count -1
Response.Write(Request.Form("ID")(i))
Next
However, to get matching ID and Price items, I suggest that you give each
input element a unique name.
Cheers
Ken
"kelvinfun" <kelvinfun@hotmail.com> wrote in message
news:075801c3802e$3031b200$a301280a@phx.gbl...
: HI,
:
: I am first time with ASP and SQL 2000, here is the
: question hope you can help me
:
: form.html is for me to input data
:
: ID PRICE
: 1 123
: 2 456
: 3 789
:
: inputprocess.asp to input to SQL
:
: id = request.form("ID") -NOT WORK
: price = request.form("price") -NOT WORK
:
: Is the problem I don't know how to make a loop or Array to
: store the 1, 2, 3.........so on ?
:
: Can any body tell me some hints or sample code, and it can
: update to SQL server
:
: Thanks
:
: Kelvin
Ken Schaefer Guest



Reply With Quote

