vote up 1 vote down star

can't seem to get the syntax right in order to pass the AttID variable. This line of code is in a for loop so I have to print using vbs response.write and not just straignt html.

Response.Write "<TD class=alt><input type=button onclick=deleteRecordAtt(AttID) value=remove></TD></TR>"
flag

Are you getting script errors in the browser? – Michael Haren Jan 19 at 2:35

1 Answer

vote up 3 vote down check

I haven't done VBScript in 8+ years, but you might want to try:

Response.Write "<td class=""alt""><input type=""button"" onclick=""deleteRecordAtt(AttID) value=""remove"" /></td>"

This would give you the more accepted html attribute quoting.

Also, your AttID variable is a client script variable? If not, you'd need to concat the server variable inline, e.g.

...onclick=""deleteRecordAtt(" & AttID & ")""...
link|flag
IT WORKED!!! THANKS!!! – MG Jan 19 at 3:06
just a note: I had to include: (" & AttID & ") for it to work. – MG Jan 19 at 3:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.