|
[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: |
<form name="Search" action="searchresults.asp " method="GET">
<table bordercolor=BLACK bgcolor="#DBE3E6" border=0 width="400 pixels" cellpadding="3">
<tr>
<td bgcolor="#cccc33">
<div align="right">
<b><font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" size="2">Zip Code :</font></b></div>
</td>
<td bgcolor="#ccff99"><input type=TEXT size=7 name="ZIP" maxlength=5></td>
</tr>
<tr>
<td bgcolor="#cccc33">
<div align="right">
<b><font size="2" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">County :</font></b></div>
</td>
<td bgcolor="#ccff99"><select size=3 name="COUNTY">
<option selected></option>
<%
Dim ObjConn
Set ObjConn = Server.CreateObject("ADODB.Connection")
ObjConn.ConnectionString="XXXXXXXX"
ObjConn.Open
Dim rs
Dim strSQL
strSQL = "Select * From [County Codes]"
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open strSQL,objconn,adOpenDynamic,adLockOptimistic,adcmdtext
If rs.EOF = True then
Else
rs.MoveFirst
Do Until rs.EOF = True
%>
<Option><%=rs.Fields("County")%></Option>
<%
rs.MoveNext
Loop
End IF
rs.Close
%>
</select></td>
</tr>
<tr>
<td bgcolor="#cccc33">
<div align="right">
<b><font size="2" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Provider Name :</font></b></div>
</td>
<td bgcolor="#ccff99"><input type=TEXT size=40 name="PNAME" maxlength=42></td>
</tr>
<tr>
<td bgcolor="#cccc33">
<div align="right">
<b><font size="2" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">City :</font></b></div>
</td>
<td bgcolor="#ccff99"><input type=TEXT size=40 name="CITY" maxlength=42></td>
</tr>
<tr>
<td bgcolor="#cccc33">
<div align="right">
<b><font size="2" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Type :</font></b></div>
</td>
<td bgcolor="#ccff99"><select size=3 name="PTYPE">
<option selected></option>
<%
strSQL = "Select * From tblDropDowns Where (((DropDown)='providertype'))"
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open strSQL,objconn,adOpenDynamic,adLockOptimistic,adcmdtext
If rs.EOF = True then
Else
rs.MoveFirst
Do Until rs.EOF = True
%>
<Option><%=rs.Fields("Value")%></Option>
<%
rs.MoveNext
Loop
End IF
rs.Close
ObjConn.Close
%>
</select></td>
</tr>
<tr>
<td bgcolor="#cccc33" align=RIGHT title="TEST"></td>
<td align=Center bgcolor="#ccff99"><input type=Submit name=Submit value="Submit"></td>
</tr>
</table>
</form>
|
Advertisement
| Hall of Fame |