954,566 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Problem about 'INSERT' in sql-ado

i have 1 page for submit this code
-----------------------PAGE1.ASP-----------------------------------------
SEND DATA pro_id by using from to PAGE2.ASP
----------------------- PAGE2.ASP-----------------------------------------

-----------------------------------------------------------------------------
PAGE2 SUBMIT TO PAGE3.ASP
BUT page3 doesn't get a data from PAGE2.ASP
i don't know why
how can i do ..............................................................................
.................................................................................................
PS. variable pro_id. i have recieve from another page ...

and i want to submit this from to next page
for insert that data into my database.

but it can't .... computer dosen't recieve my from

2bejiw
Newbie Poster
5 posts since Sep 2006
Reputation Points: 10
Solved Threads: 0
 

You should post more code.
But from the code given the problem could be that
"<%=pro_id%>" means "write out the value of a local variable.
Since this variable is passed from a previous page, it most likely should be

"Request.QueryString("pro_id")"
or
"Request.Form("pro_id")"
madmital
Junior Poster
120 posts since Jun 2005
Reputation Points: 10
Solved Threads: 5
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You