I have a very unusual type mismatch on my site.. Here's the line that its on.
<td class="boldText"><a href="makePosts.asp?subID=<%=rsForum("subjectID")% >">make post</a></td>
I figured cos this looks normal that maybe it was something to do with the loop ahead of this code but i can't see anything. Here is the code that is ahead of this link.
<%
Do While NOT rsForum.EOF
%>
<tr>
<td class="boldText"><%=rsForum("userLogin")%></td>
<td class="text"><%=rsForum("subjectComment")%></td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="boldText"><%=rsForum("commentDate")%></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<%
rsForum.MoveNext
Loop
rsForum.Close
Set rsForum = Nothing
objCon.Close
Set objCon = Nothing
%>
If anyone can see why i would be getting a mismatch!  that'd be great
|