ID = Request.QueryString ("ID"
oRecord1.Open "Exec sp_peo_UserSkills " & id,oConnect,1
Response.Write "<table border=1><tr>"
Response.Write "<th align=center>Skill Name</th>"
Response.Write "<th align=center>Skill Grade</th>"
Response.Write "</tr>"
do until........
Response.Write "<td><p align=center>" & oRecord1("SkillsName" & "</td>"
Response.Write "<td><p align=center>" & oRecord1("SkillsGrade" & "</td>"
------This bit is working perfect and return a a table with some records which is a simple 2*2 table in the example.-------------------------------------------------------
-----------------But on the next one???????????Please help me ----------------------------
CourseID = Request.QueryString ("CourseID"
oRecord1.Open "Exec sp_peo_Courses" & id,oConnect,1
Response.Write "<table border=1><tr>"
Response.Write "<th align=center>Course Name</th>"
Response.Write "<th align=center>Course Grade</th>"
Response.Write "</tr>"
do until ....................(eof....).
Response.Write "<td><p align=center>" & oRecord1("CourseID" & "</td>"
Response.Write "<td><p align=center>" & oRecord1("CourseName" & "</td>"
Response.Write "</tr>"
---------------------The seccond bit is not working but both the 2 excamples are excactly the same and they excecuting the same commands and linked to 2 different tables with the same number of fields on every record.
The excpected result is again a 2*2 table on the screen but unfortunally Im taking the following error messageMicrosoft OLE DB Provider for ODBC Drivers error '80040e21'
ODBC driver does not support the requested properties.
/tpeople/viewuser.asp, line 270)
Please help me [sig][/sig]
oRecord1.Open "Exec sp_peo_UserSkills " & id,oConnect,1
Response.Write "<table border=1><tr>"
Response.Write "<th align=center>Skill Name</th>"
Response.Write "<th align=center>Skill Grade</th>"
Response.Write "</tr>"
do until........
Response.Write "<td><p align=center>" & oRecord1("SkillsName" & "</td>"
Response.Write "<td><p align=center>" & oRecord1("SkillsGrade" & "</td>"
------This bit is working perfect and return a a table with some records which is a simple 2*2 table in the example.-------------------------------------------------------
-----------------But on the next one???????????Please help me ----------------------------
CourseID = Request.QueryString ("CourseID"
oRecord1.Open "Exec sp_peo_Courses" & id,oConnect,1
Response.Write "<table border=1><tr>"
Response.Write "<th align=center>Course Name</th>"
Response.Write "<th align=center>Course Grade</th>"
Response.Write "</tr>"
do until ....................(eof....).
Response.Write "<td><p align=center>" & oRecord1("CourseID" & "</td>"
Response.Write "<td><p align=center>" & oRecord1("CourseName" & "</td>"
Response.Write "</tr>"
---------------------The seccond bit is not working but both the 2 excamples are excactly the same and they excecuting the same commands and linked to 2 different tables with the same number of fields on every record.
The excpected result is again a 2*2 table on the screen but unfortunally Im taking the following error messageMicrosoft OLE DB Provider for ODBC Drivers error '80040e21'
ODBC driver does not support the requested properties.
/tpeople/viewuser.asp, line 270)
Please help me [sig][/sig]