|
[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.
Your Input Matters 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! |
||
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: |
<!---Search_results.cfm--->
<CFset index="1">
<CFIF not IsDefined("Form.txtBoxValue")>
<cfquery name="get_All" datasource="DSN_db1_IWS">
select *
from MasterIWS
</CFQUERY>
<CFQUERY NAME="get_total" datatsource="DSN_db1_IWS">
select count(*) as CurrentRows
from MasterIWS
</CFQUERY>
<CFELSE>
<CFIF not IsDefined("Form.Search")>
<CFQUERY name="get_All" datasource="DSN_db1_IWS">
select *
from MasterIWS
WHERE MasteIWS.DN = '#Form.MasterIWSinput#' AND Doc_No LIKE <CFQUERYPARAM cfsqltype="cf_sql_varchar" value="%#Form.txtBoxValue#%">
Order by Doc_no
</CFQUERY>
<cfquery name="get_total" datatsource="DSN_db1_IWS">
select count(*) as CurrentRows
from MasterIWS
WHERE MasteIWS.DN = '#Form.MasterIWSinput#' AND Doc_No LIKE <CFQUERYPARAM cfsqltype="cf_sql_varchar" value="%#Form.txtBoxValue#%">
</cfquery>
<CFELSEIF #Form.Search# is "IWS Search">
<CFQUERY name="get_All" datasource="DSN_db1_IWS">
select *
from MasterIWS
WHERE MasteIWS.DN = '#Form.MasterIWSinput#' AND Doc_No LIKE
<CFQUERYPARAM cfsqltype="cf_sql_varchar" value="%#Form.txtBoxValue#%">
</CFQUERY>
<CFQUERY NAME="get_total" datatsource="DSN_db1_IWS">
select count(*) as CurrentRows
FROM MasterIWS
WHERE MasteIWS.DN = '#Form.MasterIWSinput#' AND Doc_No LIKE
<CFQUERYPARAM cfsqltype="cf_sql_varchar" value="%#Form.txtBoxValue#%">
</CFQUERY>
<meta http-equiv="Contecnt-Type" content="text/html; charset=iso-8859-1">
<style type="text/css"> body {background-color=#A7EF9228bdee; } .style2{color:#b51111} </style></body>
<table width....> <tr>
<th width......>Number of files Generated:</br> <font....><cfoutput query="get_total"><b>#get_total.CurrentRows#</cfoutput> </tr></th></table><br>
<table width...> <tr> <th width.....><font...>Search Results:</font></th> <tr> <td width...><font....>S/N</font></td> <td...><font....>DOC_NO</font></td> <td...><font....>DESCRIPTION</font></td> <td...><font....>STATUS</font></td> <td...><font....>REMARKS</font></td> </tr>
<cfoutput query="get_All">
<tr> <td align=""....>
<cfScript>
writeoutput(index);
index=index+1;
</cfscript> </td>
<td.....><a target="rightBottomFrame" href="../drawing search/mainSearching.cfm?Doc_no=#get_All.doc_no#">#get_FirstNo.DOC_NO></a>< /font></td> <td....><font..>#get_All.DESCRIBE#</font></td> <td....><font..>#get_All.STATUS#</font></td> <td....><font..>#get_All.REMARKS#</font></td> </TR></cfoutput></table></body></html>
<!---searching.cfm--->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Searching</title>
<meta http-equiv="Contecnt-Type" content="text/html; charset=iso-8859-5"><style type="text/css">
body { background-color:#28bdee; }
.style1{ color: #9be094; font-weight: bold; }
.style5{color:#C0D259} .style6{color:#D1DE87}
.style7{color:#C7D76F} </style></head>
<CFQUERY NAME="get_Starting" datasource="DSN_DBL_IWS">
SELECT Starting
FROM Number1
Order By Starting
</CFQUERY>
<body class="sub"><br><br>
<form action="Search_Results.cfm" name="get_All" Method="POST" id="get_All" Target="RightBottomFrame">
<font color....><span class="style5"><span class="style6"><strong>Document Number:</strong></span><br><br>
<font color="#FFFFFF"></font>
<Select name="MasterIWSinput" style="width:84%;">
<option selected value="BeginsNo">Number Begins With...</option>
<cfoutput query = "get_Starting">
<option>#STARTING#</OPTION>
</CFOUTPUT>
</SELECT><BR>
<INPUT NAME="txtBoxValue" type="text" size="25" style=:65%;" id="txtBoxValue"><br>
<input type="Submit" Name="Search" value="IWS Search" style="width:70%;"><br><br>
<input name="btnReset" type="reset" value="clear" style="width:70%;"><br><br> <br><br></td></tr></table></form></body></html>
|
Advertisement
| Hall of Fame |