hey thanks for that.... I assume u mean response.redirect?I'm doing this <%quote_id = request.querystring("quote_id")response.redirect("editquote.asp?quote_id=quote_id")%>
and then in editquote i'm doing:quote_id = request.querystring("quote_id")SQLStmt = "SELECT * from quote, quoteitem "SQLStmt = SQLStmt & "WHERE quoteitem.quote_id = quote.quote_id and quote.quote_id = convert(int,'" "e_id& "')"rs.open SQLStmt, conn
but I get an error Syntax error converting the varchar value 'quote_id' to a column of data type int
even although the page worked when getting the quote_id from another page in the same way.....