Hi,
i think that there's no cf tag that's equivelant to textarea tag! but you can use javascript to validate the textarea input; it's not hard. you should know that coldfusion converts the validation code that you write into javascript code also.
i urge you to use both client-side &...
khurram ...
you should use forms ;) you can pass variables between pages usin' sessions, and you can do that using urls, but .. in case you wanna pass a secured values, don't use urls for that because your data will be shown for users!!
if you wanna use sessions for that, all you have to do is...
Hi,
I think this piece of code will help ya:
Index.cfm:
<cfparam name="chkMarried" default="0">
<cfif isdefined("FrmSubmit")>
<cfquery datasource="dsn" query="q">
Insert Into Member(Married)
Values(#chkMarried#) <!--- numeric --->...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.