Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<% If OnMenuReview("Approved") = "True" then
IsReview = "True" %><tr>
<td> <strong>Review <%=ReviewCount%>: <font color="#990033">
<%=OnMenuReview("ReviewTitle")%></font></strong>
<BR> <%= Left.(OnMenuReview("ReviewDesc"),25)%>
<BR><font color="#000000">Review Created by <%=OnMenuReview("CreatedBy")%></font> </td>
</tr>
<% ReviewCount = ReviewCount + 1 %>
<% End If %>
<%Response.BinaryWrite(OnMenuReview("ReviewDesc"))%>
<%
If OnMenuReview("Approved") = "True"
then
IsReview = "True"
%>
<tr>
<td> <strong>Review <%=ReviewCount%>: <font color="#990033"> <%=OnMenuReview("ReviewTitle")%>
</font></strong>
<BR>
<%= [b](Left(OnMenuReview("ReviewDesc"),25))[/b]%>
<BR><font color="#000000">Review Created by
<%=OnMenuReview("CreatedBy")%>
</font> </td>
</tr>
<% ReviewCount = ReviewCount + 1 %>
<% End If %>
<%
dim descriptiontext(0)
descriptiontext(0) = OnMenuReview("ReviewDesc")
%>
manicleek (TechnicalUser) Jun 30, 2004
Ok, Now I'm getting
Microsoft VBScript runtime error '800a000d'
Type mismatch
/qfol/Qfol-Latest/moreResults.asp, line 207
with line 207 being the <%= Left(descriptiontext,25)%>
code
I have put in the variable as
Code:<% dim descriptiontext(0) descriptiontext(0) = OnMenuReview("ReviewDesc") %>