Advertisement
Advertisement
| 08.19.2008 at 09:13AM PDT, ID: 23660143 |
|
[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: |
<script language="javascript">
function EnableDisableFields(enabledfield, disabledfield){
document.form1.enabledfield.disabled=false;
document.form1.enabledfield.disabled=true;
}
</script>
<%
'Get the amount of other gamers
teamsize = current_tournament.Fields.Item("teamsize").Value
'Display the invite gamers the correct amount of times
For i=2 to teamsize
txtgamertag = "txtgamertag" & i
txtemail = "txtemail" & i
%>
<tr>
<td>Gamer:</td>
<td width="6%">
<input name="invite<%=i%>" type="radio" id="invite_<%=i%>" value="chkgamertag<%=i%>" checked="checked" onclick="EnableDisableFields("<%=txtgamertag%>", "<%=txtemail%>")"/> </td>
<td width="26%"><select name="txtgamertag<%=i%>" id="gamers">
<option value="null"selected="selected">Select One...</option>
<%
While (NOT gamers_toinvite.EOF)
'If the gamer is not in a team in this tournament then show in drop down
If InStr(gamers_toinvite.Fields.Item("teams").Value, "-" & Request.Cookies("tournament") & ".") = 0 Then
iftester = iftester + 1
%><option value="<%=gamers_toinvite.Fields.Item("ID").Value%>"><%=gamers_toinvite.Fields.Item("gamertag").Value%></option>
<%
End If 'End If the gamer is not in a team
gamers_toinvite.MoveNext()
Wend
%>
</select></td>
<td width="3%"><input type="radio" name="invite<%=i%>" id="invite_<%=i%>" value="chkemail<%=i%>"onclick="EnableDisableFields("<%=txtemail%>", "<%=txtgamertag%>")"/></td>
<td width="32%"><input type="text" name="txtemail<%=i%>" id="txtemail<%=i%>" value="" maxlength="100" disabled="true"/></td>
</tr>
<%Next%>
|