Is it possible to re-enter form values from second table?
In (asp classic) i have a form(one), a user access it by login-- then some values are pre-filled by session variables --- after that if user selects [add contacts] from add button then from pop up window he chooses one contact from contacts list ,,,is it possible to refill these values to form(a). I think I have cleared my point.
I did this in that wayâ¦.
As user is logged in on form(one) he selects one contact from pop up window
And if I populate these values to form(two) its working fine, and if I cut query from form(two) and paste to form(one) it gives error.
So after putting query in form(one) when user clicks on send package,,,,,, page generate error, Because query is trying to find requested contacts_id and thatâs why page generate error..
I donât know how to resolve this.
And the error is
Error Type:
Microsoft JET Database Engine (0x80040E14)
Syntax error (missing operator) in query expression 'contacts_id='.
For more understandingâ¦â¦â¦.
Login page>>member area>>send package>>form(one)âselect contacts---if successful it goes to form(one) other wise it generates error.
In member area page -send package- link is open by thisâ¦
<a href="send_package.asp?client_id=<%=session("mem_i d")%>">Send Package</a>
so logically it is working fine,,, until I paste query from form(two)â¦
I am new to asp so thatâs why I need help,,, thanks to all :)
|