I'm working on a page that requests variables from an .asp form page, then ships the variables to the next page via XML. Here's a snippet of the code with the pertinent fields.
This page works just fine as long as the variable is coded in, but when I try to reference the ASP variable, it fails.
Any ideas on how to make this asp page put the xml variables through to the next page properly?
productid = Request.QueryString("productid")
strXML = strXML & "<productid>A1b23C4</productid>" & vbcrlf
If I try to do this: strXML = strXML & "productid" & productid & "</productid>" & vbcrlf
it fails.
HELP PLEASE.


