[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.1

Pass form values in coldfusion

Asked by panosms in ColdFusion Studio, ColdFusion Application Server

Hello experts.
I need help to decide wich method i should use to pass form values from two search pages (two search forms) to one result page and one detailpage.
To build this i have used Url variables.
On the result page i have two link to the searchpage1 Or 2 depending on a Url variable and using
<cfswitch and cfcase.
The first link is :New search
And the second  to Edit the search fields using the url variables:
I also handle the number of records with a form.
And the function sort by that works with url variables too.

I have also  alink to the detail page.
On the detail page are these two links for new search and edit search and a third one that goes to the result page(not back)

The question is how can i pass the search values from page to another page.
f.e if i choose 20 for number of records than i loose the search values in URl.If i add #CGI.Query_String# to URL i get more than once the value for the records.
And than from the result page to the detail and than back how can i pass the values back.
Do i have to use Form variables instead of Url.Do i have to use cookies or session?
Please help.
Here are part of the codes .
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
The first search page:
<cfform action="Results.cfm" method="get" name="SearchForm" id="SearchForm">
Price from
<cfselect name="S_Preisvon">
  <option value="" <cfif  url.S_Preisvon EQ "" > selected="selected"</cfif>>All</option>
   <cfoutput query="q_preisvon">
   <option value="#q_preisvon.PRB_Id#" <cfif  listfind(q_preisvon.PRB_Id,url.S_Preisvon) > selected="selected"</cfif>>#q_preisvon.PRB# &##8364;</option>
     </cfoutput>
</cfselect></br>
Price to                        
  <cfselect name="S_Preisbis">
     <option value="" <cfif  url.S_Preisbis EQ "" >selected="selected"</cfif>>All</option>
      <cfoutput query="q_preisbis">
       <option value="#q_preisbis.PRB_Id#" <cfif  listfind(q_preisbis.PRB_Id,url.S_Preisbis)> selected="selected"</cfif>>#q_preisbis.PRB# &##8364;</option>
      </cfoutput>
   </cfselect></br>
Results per page
  <cfselect class="selectleftbottom" name="nrecords">
                  <option value="5" <cfif Url.nrecords EQ 5 > selected="selected"</cfif>>5 </option>
                  <option value="10" <cfif Url.nrecords EQ 10> selected="selected"</cfif>>10 </option>
                  <option value="20" <cfif Url.nrecords EQ 20 > selected="selected"</cfif>>20 </option>
                  <option value="30" <cfif Url.nrecords EQ 30 > selected="selected"</cfif>>30 </option>
                  <option value="50" <cfif Url.nrecords EQ 50 > selected="selected"</cfif>>50 </option>
                  <option value="100" <cfif Url.nrecords EQ 100 > selected="selected"</cfif>>100 </option>
        </cfselect> 
</cfform>        
 
 
Result page:
<cffunction name="cleanOrderBy" returntype="string">
  <cfargument name="theValue" type="string">
  <cfargument name="defaultSort" type="string">
  <cfif REFindNoCase("[\w,]{1,50}\s+(asc|desc)\s*",theValue,1)>
    <cfset matches = REFindNoCase("[\w,]{1,50}\s+(asc|desc)\s*",theValue,1,"true")>
    <cfreturn Mid(theValue,matches.pos[1],matches.len[1])/>
  </cfif>
  <cfreturn defaultSort/>
</cffunction>
<cfset CurrentPage=GetFileFromPath(GetBaseTemplatePath())>
<cfparam name="PageNum_artikel" default="1">
<cfparam name="url.nrecords" default="10">
<cfparam name="url.tfm_orderby" default="Price">
<cfparam name="url.tfm_order" default="ASC">
<cfset sql_orderby = cleanOrderBy("#tfm_orderby# #tfm_order#","Price")>
<cfif true eq true>
<cfquery name="artikel" datasource="#request.dsn#">
SELECT SELECT  a.Art_ID,a.Mobile_Sub_ID,a.Name,a.Price,a.Datein
WHERE (0=0
<cfif isdefined("Url.S_Preisvon")>
   <cfif Url.S_Preisvon NEQ "">      
  AND a.Price >= <cfqueryparam value="#URL.S_Preisvon#" cfsqltype="cf_sql_numeric">
      </cfif>
    </cfif>            
<cfif isDefined ("Url.S_Preisbis")>
 <cfif Url.S_Preisbis NEQ "">
 AND  a.Price <= <cfqueryparam value="#URL.S_Preisbis#" cfsqltype="cf_sql_numeric">
       </cfif>
     </cfif>
  </cfquery>
    <cfset QueryString_artikel=Iif(CGI.QUERY_STRING NEQ "",DE("&"&CGI.QUERY_STRING),DE(""))>
</cfif>
<cfset MaxRows_artikel="#url.nrecords#">
<cfset StartRow_artikel=Min((PageNum_artikel-1)*MaxRows_artikel+1,Max(artikel.RecordCount,1))>
<cfset EndRow_artikel=Min(StartRow_artikel+MaxRows_artikel-1,artikel.RecordCount)>
<cfset TotalPages_artikel=Ceiling(artikel.RecordCount/MaxRows_artikel)>
<cfset QueryString_artikel=Iif(CGI.QUERY_STRING NEQ "",DE("&"&XMLFormat(CGI.QUERY_STRING)),DE(""))>
<cfset tempPos=ListContainsNoCase(QueryString_artikel,"PageNum_artikel=","&")>
<cfif tempPos NEQ 0>
  <cfset QueryString_artikel=ListDeleteAt(QueryString_artikel,tempPos,"&")>
</cfif>
 
 
<cfscript>
TFM_LimitLinksEndCount = 10;
TFM_startLink = Max(1,PageNum_artikel - int(TFM_LimitLinksEndCount/2));
TFM_temp = TFM_startLink + TFM_LimitLinksEndCount - 1;
TFM_endLink = min(TFM_temp, TotalPages_artikel);
If (TFM_endLink NEQ TFM_temp) {
  TFM_startLink = max(1,TFM_endLink - TFM_LimitLinksEndCount + 1);
}
</cfscript>
<cfscript>
//sort column headers for artikel
tfm_saveParams = "";
tfm_keepParams = "";
if(tfm_order EQ "ASC") {
	tfm_order = "DESC";
}else{
	tfm_order = "ASC";
}
if(ListLen(tfm_saveParams)GT 0) {
	tfm_params=ListToArray(tfm_saveParams,",");
	For (i=1; i LTE ArrayLen(tfm_params); i=i+1) {
  		if(isDefined(tfm_params[i])) {
      			tfm_temp = tfm_params[i];
			if(isDefined("form." & tfm_params[i])) tfm_temp = "form." & tfm_params[i];
      			tfm_keepParams = tfm_keepParams &  LCase(tfm_params[i]) & "=" & URLEncodedFormat(Evaluate(tfm_temp)) & "&";
		}
	}
}
tfm_orderbyURL = CGI.SCRIPT_NAME & "?" & tfm_keepParams & "tfm_order=" & tfm_order & "&tfm_orderby=";
</cfscript>
  
<!--- script for nrecords --->
<script language="JavaScript">
<!--
     function slappy() {
          document.changy.submit();
     }
//-->
</script> 
<!--- end --->
 
<!--- Body --->
<!--- the links --->
<a href=<cfswitch expression="#url.S_Mobile_Sub_ID#">
<cfcase value="1">
  "Search/Search.cfm?Mobile_Sub_ID=1"
  </cfcase>
  <cfcase value="2">
  "Search/Search.cfm?Mobile_Sub_ID=2"
  </cfcase>
</cfswitch>>New Search</a>
<a href=<cfswitch expression="#url.S_Mobile_Sub_ID#">
  <cfcase value="1">
  "Search/Search.cfm?Mobile_Sub_ID=1&<cfoutput>#CGI.QUERY_STRING#</cfoutput>"
  </cfcase>
  <cfcase value="2">
  "Search/Search.cfm?Mobile_Sub_ID=2&<cfoutput>#CGI.QUERY_STRING#</cfoutput>"
  </cfcase></cfswitch>>Edit  Search criteria</a>
 
 
<!--- the form for nrecords--->
<form action="Results.cfm?lite=Results<cfif (isdefined("url.pagenumber"))>&pagenumber=#url.pagenumber#</cfif>&S_Mobile_Sub_Id=<cfoutput>#artikel.Mobile_Sub_id#</cfoutput>" method="get" name="changy" id="changy">
      <div align="right">Results per page :
        <select  id="nrecords"name="nrecords" onChange="slappy();" class="Resultnumber">
            <cfloop index="kk" list="5,10,20,30,50,100">
              <option value="<cfoutput>#kk#</cfoutput>" 
	  <cfif kk is url.nrecords>selected</cfif> > <cfoutput>#kk#</cfoutput> </option>
            </cfloop>
          </select>
      </div>
    </form>
    <!--- end --->
	
<!--- the sort by code --->
<a href="<cfoutput>#tfm_orderbyURL#</cfoutput>Art_ID&nrecords=<cfoutput>#nrecords#</cfoutput>">Day Insert</a>                  
 <a href="<cfoutput>#tfm_orderbyURL#</cfoutput>Price&nrecords=<cfoutput>#nrecords#</cfoutput>">Price</a>   
 
 
 <!--- in the query output is the link to the detailpage--->
 <a href="Detail.cfm?Art_ID=#URLEncodedFormat(artikel.Art_ID)#" title="Detailansicht" target="_blank">Detail</a>
[+][-]05/08/09 02:17 AM, ID: 24334211Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: ColdFusion Studio, ColdFusion Application Server
Sign Up Now!
Solution Provided By: azadisaryev
Participating Experts: 1
Solution Grade: A
 
[+][-]05/08/09 02:49 AM, ID: 24334422Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05/09/09 02:25 AM, ID: 24342983Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]05/09/09 04:30 AM, ID: 24343315Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05/09/09 05:02 AM, ID: 24343413Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05/09/09 06:00 AM, ID: 24343652Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]05/09/09 06:40 AM, ID: 24343758Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05/09/09 06:46 AM, ID: 24343777Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05/09/09 07:16 AM, ID: 24343892Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091118-EE-VQP-93 - Hierarchy / EE_QW_4_20070622