Hi,
Are there pro's or con's to either of the below?
One breaks out of asp to do the HTML the other Response.Writes the HTML.

Thanks,
Al.

Code:
<TD colspan="4" align="center">
<%If CallWork="Completed" then%>
      <Input type=submit name="btn" value="Report Parts Used">&nbsp;
      <Input type=submit name="btn" value="No Parts Used">&nbsp;
<%Else%>
      <Input type=submit name="btn" value="Enter Repair Text">&nbsp;
<%End If%>
      <button type="reset">Clear Form</button>&nbsp;
      <button onclick="history.go(-1)"><font color="blue"><b>Back</b></font>

</TD>
Code:
<%
With Response
      .Write "<TD colspan='4' align='center'>"
If CallWork="Completed" then
      .Write "<Input type=submit name='btn' value='Report Parts Used'>&nbsp;"
      .Write "<Input type=submit name='btn' value='No Parts Used'>&nbsp;"
Else
      .Write "<Input type=submit name='btn' value='Enter Repair Text'>&nbsp;"
End If
      .Write "<button type='reset'>Clear Form</button>&nbsp;"
      .Write "<button onclick='history.go(-1)'><font color='blue'><b>Back</b></font>"
      .Write "</TD>"
End With
%>