CFLib.org – Common Function Library Project

URLToHidden([excludeList])

Last updated March 10, 2002
Download UDF

author

Nathan Dintenfass                                 Nathan Dintenfass

Version: 1 | Requires: ColdFusion 5 | Library: UtilityLib

 
Rated 1 time(s). Average Rating: 4.0

Description:
This is a quick way to capture the URL variables on a given page as hidden fields in a form. This is useful when you have a multi-step process.

Return Values:
Returns a string.

Example:

<cfoutput>
    #htmlCodeFormat(urlToHidden())#
</cfoutput>

Parameters:

Name Description Required
excludeList A list of keys not to copy from the URL structure. No

Full UDF Source:

<cfscript>
/**
* Converts the URL structure to hidden form fields.
*
* @param excludeList      A list of keys not to copy from the URL structure.
* @return Returns a string.
* @author Nathan Dintenfass (nathan@changemedia.com)
* @version 1, March 10, 2002
*/

function urlToHidden(){
    //a variable for iterating
    var key = "";
    //should we exlude any? by default, no
    var excludeList = "";
    //a variable to return stuff
    var outVar = "";
    //if there is an argument, it is a list to exclude
    if(arrayLen(arguments))
        excludeList = arguments[1];
    //now loop through the form scope and make hidden fields
    for(key in url){
        if(NOT listFindNoCase(excludeList,key))
            outVar = outVar & "<input type=""hidden"" name=""" & key & """ value=""" & htmlEditFormat(url[key]) & """>";
    }
    return outVar;        
}
</cfscript>

Search CFLib.org


Latest Additions

Shawn Porter Shawn Porter added
DeMoronize
3 hour(s) ago

Chris Carey Chris Carey added
readPropertiesFi...
1 day(s) ago

Randy Johnson Randy Johnson added
lastDayofWeek
3 day(s) ago

Frank Marion Frank Marion added
sitemapPing
7 day(s) ago

Top Rated

James Sleeman                                     QuickSort
Rated 5.0, 3 time(s)

Barney Boisvert indentXml
Rated 5.0, 3 time(s)

Nathan Dintenfass                                 queryColumnsToSt...
Rated 5.0, 3 time(s)

Kevin Pepperman generateSsccAsn
Rated 5.0, 3 time(s)

Created by Raymond Camden / Design by Justin Johnson