Skip to main content
Participant
June 28, 2008
Question

http name value pair

  • June 28, 2008
  • 2 replies
  • 340 views
does coldfusion support the following and how could we retrieve the values for a,b,c:

http://www.abc.com/index.cfm?a=1&b=1&c=3

pls kindly advise.
    This topic has been closed for replies.

    2 replies

    Known Participant
    June 28, 2008
    Yes it does support this as url.a, url.b

    e.g.

    <h1>My URL Values</h1>
    <cfoutput>
    <p>a = #url.a#, b = #url.b#, c = #url.c#</p>
    </cfoutput>
    Inspiring
    June 28, 2008
    Not sure what you mean when you ask if ColdFusion supports it.

    The following will output the values for the URL parameters:

    <cfoutput>
    <p>#URL.a#</p>
    <p>#URL.b#</p>
    <p>#URL.c#</p>
    </cfoutput>

    --
    Ken Ford
    Adobe Community Expert - Dreamweaver/ColdFusion
    Fordwebs, LLC
    http://www.fordwebs.com


    "dynason" <webforumsuser@macromedia.com> wrote in message news:g45714$fsv$1@forums.macromedia.com...
    > does coldfusion support the following and how could we retrieve the values for a,b,c:
    >
    > http://www.abc.com/index.cfm?a=1&b=1&c=3
    >
    > pls kindly advise.