iza thanks for your reply but my question is I am using cfoutput but it deosn't show any thing the code is
<cfoutput>
#QUERY_STRING#
</cfoutput>
and the resone I want to see that becasue I am passing varibles from one page to another and for some reason I cant pass them (selected thing in HTML) thanks
-> check in the docs for the correct syntax - i'm not sure whether it's QueryString or Query_String
-> why can't you pass the variables ??? are you using a form or passing them in the url ??
I am using a form the issue is I am getting the variable but not getting the value of that example I had selected box and many option each option has a value so basis on the user selection there is a value for each item I can get selected items but not the values if you know what I mean??
the other thing is how to track variable in application like not just single page in debug but multi pages.Thanks again
i don't really see what you mean : you can get the selected items but not their values ??? it's an easy javascript problem - either read the jscript doc or ask your question in the jscript forum
the 2nd question, if your variable is a session one orr an application one you can access it from every page in your app
it is passed from one page to another so I am using substituting to the items which are pulled from the datbase ok this page processed I got the values substituted in this page and each item in that selected box has diff value so when user select an item from that page and hit submit to the form the next page shoul have the item which has been selected by the user and its value <select multipul> <option value= ??? >itemname/<option>
so when I check in the action page about Form.select
I will get just the names of that selected items not the values ?
if there is no much trouble I used to work with delano web apps which I can check in the debug mode as hole application not page by page like coldfusion as far I know can you tell me if there such way how can I track or debug appliction
the value for the selected option in a SIMPLE list box is reachable thru :
listboxname.options[listboxname.SelectedIndex].value
the itemname thru :
listboxname.options[listboxname.SelectedIndex].text
now for MULTIPLE list box there is only more than 1 selectedIndex
go to the jscript forum
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.