Can this Captcha app be integrated into an ASP programmatically built form? Here's the spot on on my form where the #include file="CAPTCHA/CAPTCHA_form_inc.asp" would go:
response.write("<p>")
response.write("<textarea id='comment' name='comment' tabindex='4'></textarea>")
response.write("</p>")
include file here
response.write("<input id='submit' name='submit' type='submit' tabindex='5' value='"& ids("Submit") &"' />")
response.write("<input id='article' name='article' type='hidden' value="""& intDisplay &""" />")
response.write("</form>")
But obviously, simply placing the include file syntax in that spot doesn't work. Can I even use response.write to include a file? Thanks.