Advertisement
Advertisement
| 01.09.2008 at 02:32PM PST, ID: 23071129 |
|
[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: |
<table cellpadding='0' cellspacing='0' border="0">
<%
dim arrSplitModel, arrSplitDesc, i
arrSplitModel = Split("" & rstDBEdit.Fields("model_input"), ",")
ReDim Preserve arrSplitModel(13)
arrSplitDesc = Split("" & rstDBEdit.Fields("desc_input"), ",")
ReDim Preserve arrSplitDesc(13)
for i = LBound(arrSplitModel) to UBound(arrSplitModel)
%>
<tr>
<td><input class='special' type='text' name='strModel' value='<%=arrSplitModel(i)%>' style='padding-left: 5px; solid #cbcbcb; border-bottom: 1px solid #aaaaaa;' maxlength='12' /></td>
<td><input class='special' type="text" name='strDesc' value='<%=arrSplitDesc(i)%>' style='padding-left: 5px; border-bottom: 1px solid #aaaaaa;' maxlength='12' /></td>
</tr>
<%
Next
%>
</table>
</td>
<td>
<table cellpadding='0' cellspacing='0' border="0">
<% dim mStr
mStr = 0
Do Until mStr = 14
%>
<tr>
<td><input type='text' size='57' readonly style="border-bottom: 1px solid #aaaaaa;" /></td>
</tr>
<% mStr = mStr + 1
Loop
%>
</table>
database update contains:
& "model_input = '" & CStr(UCase(Trim(Request.Form("strModel")))) & "', " _
& "desc_input = '" & CStr(UCase(Trim(Request.Form("strDesc")))) & "', " _
And then when I view the output, I use:
dim text
response.Write "<table border='1' width='15%'>"
for each text in Split(Request("strModel"), ",")
response.Write "<tr><td>" & text & "</td></tr>"
response.Write Trim(text)
next
response.Write "</table>"
dim desc
response.Write "<table border='1' width='15%'>"
for each desc in Split(Request("strDesc"), ",")
response.Write "<tr><td>" & desc & "</td></tr>"
response.Write Trim(desc)
next
response.Write "</table>"
|