Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx_professional thread: Problem Passing Variables


Message #1 by "Andy Reichenbach" <areich@g...> on Wed, 22 May 2002 02:50:29
Andy,

I think the problem might be the following:

Survey2
 
<HTML>
<HEAD>
<TITLE>Survey Response</TITLE>
</HEAD>
<FORM ACTION="Survey3.asp" METHOD="POST">
<BODY>

I noticed that the <FORM ...  > tag came before the <BODY> tag.  I haven't 
tested anything, but I think that might be the problem.  At the end of the 
page, you do put </FORM></BODY>, which is how it should be.  Try starting 
Survey2 like this:

<HTML>
<HEAD>
<TITLE>Survey Response</TITLE>
</HEAD>
<BODY>
<FORM ACTION="Survey3.asp" METHOD="POST">

In html, you also need to open and close your tags in the right order, for 
instance (these are not real tags, just an example):

<A><B><C>Text</C></B></A>

I hope this helps...

Inge

> I am unable to place my datastore into the my database.  I know the 
connection is working b/c it is storing ID's every time I have a session.  
I believe my problem is passing the variables from Survey2 to Survey3.
 
Please advise,
 
Andy
< 

  Return to Index