|
[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: |
<%@ Language=VBScript %>
<!--#include file="apPGDclrDBCONN.asp"-->
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<html>
<body>
<%
response.write examtitle & "<br>"
response.write "Admission Proceedings:" & request("padmcode")
%>
<table border=3>
<tr>
<td> S.No </td>
<td> Subject </td>
<td> HTNO </td>
<td> Name </td>
<td> Rank</td>
<td>SS</td>
<td>Univ</td>
<td>Admission Remarks</td>
<%
DIM intPageRecords, intRecords, intRecordCount, intCurrentPage
DIM intNumberOfPages, intDisplayPage
intPageRecords = Request.Querystring("page")
IF intPageRecords = "" THEN intPageRecords = 1 : intRecords = 1
intRecords = intPageRecords
intPageRecords = ((intPageRecords - 1) * 10) +1
intRecordCount = 0
rscdbadd.open "select * from tblbasicAPPL where padmcode=" & Request("padmcode") & " and cdhcrcd=1 order by subid, rank",objdbconnPGDclr,1,1
if rscdbadd.bof and rscdbadd.eof = true then
response.write "There are no records"
end if
rscdbadd.Move (intPageRecords - 1)
dim rn
rn=0
'while not rscdbadd.eof
DO WHILE intRecordCount < 10 and NOT rscdbadd.EOF
rn=rn+1
response.write "<tr>" & "<td>" & rn & "</td>"
response.write "<td>" & rscdbadd("Subject") & "</td>"
response.write "<td>" & rscdbadd("htno") & "</td>"
response.write "<td>" & rscdbadd("cname") & " " & rscdbadd("initials") & "</td>"
response.write "<td>" & rscdbadd("rank") & "</td>"
response.write "<td>" & rscdbadd("SS") & "</td>"
response.write "<td>" & rscdbadd("Univ") & "</td>"
response.write "<td>" & "______________________" & "</td>"
rscdbadd.movenext
intRecordCount = intRecordCount +1
Loop
%>
</table>
<%=intPageRecords%> - <%=intPageRecords+(intRecordCount-1)%> of
<%=(rscdbadd.RecordCount)%> Candidates
<p>Scroll Through More candidates
<%
intCurrentPage = Request.Querystring("page")
IF intCurrentPage = "" THEN intCurrentPage = 1
intNumberOfPages = int(rscdbadd.RecordCount \ 10)
IF rscdbadd.RecordCount MOD 10<> 0 THEN intNumberOfPages = intNumberOfPages + 1
Response.Write("Pages: [")
FOR intDisplayPage = 1 TO intNumberOfPages
IF Cint(intDisplayPage) = Cint(intCurrentPage) THEN
Response.Write " <b>" & intDisplayPage & "</b> "
ELSE
Response.Write " <a href=""apPGDclrecPADMadmproc.asp?page=" & intDisplayPage & """>" & intDisplayPage &"</a> "
END IF
NEXT
Response.Write ("]")
%>
<%
rscdbadd.close
set rscdbadd=nothing
set objdbconnPGDclr=nothing
%>
</html>
|
Advertisement
| Hall of Fame |