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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Struggling with syntax 1

Status
Not open for further replies.

Miditen

Technical User
Jul 17, 2001
23
US
Can someone please tell me where I've gone wrong with my syntax?
Code:
Response.Write &quot;<TD onClick=&quot; & Chr(34) & &quot;location='event.asp?ID=&quot; & rsDate(&quot;ID&quot;) & &quot;';&quot; & Chr(34) & &quot;>&quot; & iCurrent & &quot;</TD>&quot;

Thanks!!
 
Response.Write &quot;<TD onClick=&quot;&quot;location='event.asp?ID=&quot; & rsDate(&quot;ID&quot;) & &quot;';&quot;&quot;>&quot; & iCurrent & &quot;</TD>&quot;

should work for ya.
penny.gif
penny.gif
 
It turned out my problem was casued by an EOF error (which you'd think I'd recognize by now, having seen it so often) but I thank you for the cleaner way to code.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top