How should I modify the code below that mrnumber parameter is passed to url path of the action page?
When I hit submit, I want to see in the url: get_report.cfm?type=mr&mrnumber=xxxx
<cfform action = "get_report.cfm?type=mr" method = "post">
<div align="left"> <font size="2">
<input type="text" name="mrnumber">
</font></div>
<div align="left"> <font size="2">
<input type="submit" name = "submit" value = "Get Status">
</font></div>
</cfform>
When I hit submit, I want to see in the url: get_report.cfm?type=mr&mrnumber=xxxx
<cfform action = "get_report.cfm?type=mr" method = "post">
<div align="left"> <font size="2">
<input type="text" name="mrnumber">
</font></div>
<div align="left"> <font size="2">
<input type="submit" name = "submit" value = "Get Status">
</font></div>
</cfform>