Web Development  >>  Coldfusion

Validating Input Parameters

Language : English Quality : High Has Audio : true Source : Adobe Media : Flash
One of the first things a web programmer learns is that the web is stateless. To get around this fact, web programmers use a variety of methods including form, URL, and cookie variables. A user can manipulate all of these variables, however. So, for example, you wouldn't pass the price of a product through a URL variable and allow the user to change the price of a product.
Whats discussed in this presentation
  • URL, Form, Cookie values
  • Input Validation
  • CFML methods
  • Cross-site Scripting and SQL Injection
  • Handling it when things go wrong


  • You can download the code and PowerPoint : http://ray.camdenfamily.com/downloads/input_preso.zip

    Tags: Coldfusion, Web Development, Adobe, Security, Validation, Presentation,     [SUGGEST  A  TAG]

    Resources referenced in this screencast
  • Coldfusion MX

  • Created : 2005-09-14   Duration : 57:06

    Articles Realted to this Topic

    [SUGGEST  A  ARTICLE]
    Input validation with JavaScript
    In addition to native ColdFusion input validation using the validate attribute of the cfinput and cftextinput tags, the following tags support the onvalidate attribute, which lets you specify a JavaScript function to handle your cfform input validation
    Validating Form Input With Regular Expressions
    If you've ever wanted to validate form input such as email addresses and phone numbers, but have found the built-in validations of CFFORM to be lacking, note that CF5 has added new functionality to perform regular expression validation within CFINPUT. All you need is the right expression. If you're not familiar with them, no worries