Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by bebbero

  1. bebbero

    CFFORM

    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 &amp...
  2. bebbero

    Passing Variables between Multiple Pages

    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...
  3. bebbero

    Check Boxes

    Hi, I think this piece of code will help ya: Index.cfm: <cfparam name=&quot;chkMarried&quot; default=&quot;0&quot;> <cfif isdefined(&quot;FrmSubmit&quot;)> <cfquery datasource=&quot;dsn&quot; query=&quot;q&quot;> Insert Into Member(Married) Values(#chkMarried#) <!--- numeric --->...

Part and Inventory Search

Back
Top