Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

displaying a var in an HTML tag

Status
Not open for further replies.

JohannIcon

Programmer
Sep 3, 2002
440
MT
Hi all,

Can you please help me out here cause I have a syntax error and cannot solve it out. Here is the code:-

<%
response.Write(&quot;<input name=menuCheck&quot; & n+1 & &quot; type=checkbox id=menuCheck value=(rs1(&quot;menuName&quot;))%> >&quot;)
rs1.movenext
%>
 
try this:
Code:
<%    
response.Write &quot;<input name=menuCheck&quot; & n+1 & &quot; type=checkbox id=menuCheck value=&quot; & rs1(&quot;menuName&quot;) & &quot;>&quot;
rs1.movenext
%>
Tony
reddot.gif WIDTH=500 HEIGHT=2 VSPACE=3

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top