Advertisement
Advertisement
| 03.27.2008 at 05:49PM PDT, ID: 23276172 |
|
[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: |
<head>
<title> J8 </title>
<link href="../common/nu_style3.css" rel="stylesheet"
type="text/css" />
<script language="JavaScript">
function setTextFocus(i)
{
document.remove_parts.removeQty[i].focus();
}
function showSubmit(i)
{
document.remove_parts.action[i].style.visibility = 'visible';
setTextFocus();
}
function hideSubmit(i)
{
document.remove_parts.action[i].style.visibility = 'hidden';
}
function checkRadio(i)
{
document.remove_parts.remove[i].checked = true;
showSubmit(i);
}
</script>
</head>
<form name="remove_parts" method="GET" action="default.asp">
<!--THIS DIV CREATES A RADIO BUTTON FOR EACH PART IN OUR ARRAY-->
<div id="q3">
<table>
<th class="1">REMOVE</th>
<% For i = 0 to UBound(miscparts) %>
<tr>
<td>
<input name="remove" type="radio" class="radio"
onClick="setTextFocus(<% = i %>)" Value="<%= miscparts(i) %>" />
</td>
</tr>
<% Next %>
</table>
</div>
<!--THIS DIV CREATES A TEXT BOX FOR EACH PART IN OUR ARRAY-->
<div id="q4">
<table>
<th class="1">QTY</th>
<tr>
<td>
<input class="text" name="removeQty" onBlur="hideSubmit
(<% = i % >)" onClick="checkRadio(<% = i %>)"
onFocus="showSubmit(<% = i %>)" type="input" size="3"/>
</td>
</tr>
<% Next %>
</table>
</div>
<!--THIS DIV CREATES A SUBMIT BUTTON FOR EACH PART IN OUR ARRAY-->
<div id="q5">
<table>
<th class="1"> </th>
<% For i = 0 to UBound(miscparts) %>
<tr>
<td>
<input style="visibility:hidden;"class="submit" type="submit"
name="action" value="submit">
</td>
</tr>
<% Next %>
</table>
</div>
</form>
|