My querystring is coming through fine, and my form default values work fine if I substitute plain text for the Request.QueryString code, but my querystring values aren't showing up when coded as follows:
Code:
' URL, truncated for this example:
[URL unfurl="true"]http://localhost/sterilization/newsln/new_enter_sln.asp?Problem=1&company=&lotnumber=9ZZZ99&packnumber=12345[/URL]
' Form template (repeated for each field)
<tr>
<td width=25></td>
<td valign=middle> Sterile Lot Number</td>
<td height=40> <input type="text" autocomplete="off" name="lotnumber" size="40" maxlength="50" value="<% Request.Querystring("lotnumber") %>"></td>
</tr>