Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<style>
.captext{
text-transform : uppercase;
}
</style>
:
<form ...>
<input type="text" name="name" class="captext">
</form>
<form action="okpage.cfm" method="POST" ...>
<input type="text" name="firstname">
</form>
<CFQUERY ...>
INSERT INTO myTable
(firstname) VALUES ('#UCase(FORM.firstname)#')
</CFQUERY>