%Request.GetParameter returns null value
I have an html area created on a webpage.
On the same web page I have a push button. The push button is responsible for processing the %Request.GetParameter and displaying the value that goes alone with it.
Below is the input text statement in the html area:
<input type="text" name="DRIVERS_LIC" style="position:relative; width: 13em; left:3pt; top:3pt;color: #000000; font-family:Arial, sans-serif; font-weight: bold; font-size: 10pt; background-color: #FAFAD2;" size="13" placeholder="Example:N1234567" required="" maxlength="13" value="R291992929399">
The input text statement works fine, and displays the following on the webpage:
If I press the submit button to grab the DRIVERS_LIC value, the %Request.GetParameter("DRIVERS_LIC"); peoplecode returns a blank/null value. I would expect the value that was originally passed R291992929399 to be sent back. I'm trying to figure out why the value of DRIVERES_LIC is not passed back to peoplecode.