I'm using tcl as my server-side scripting language, and I'm having a problem with one particular line of code that I cannot figure out for the life of me. The line is:
The problem has got to be with the "deleteRow(\"$inval[$this_row)\"; part of the line, because if I take it out, the web page is fine. If I leave it in, it completely messes up my page. All the formatting is thrown off. I think it has to do with the quotes, but I've tried \" (as seen here) and \', and neither works.
I do not seem to be getting anywhere, so maybe some other eyes out in Tcl-land can help. Thanks!
Code:
puts " <input type=button name=butn_DeleteRow value=D style=width:20px onclick=deleteRow(\"$inval($this_row)\");>"
The problem has got to be with the "deleteRow(\"$inval[$this_row)\"; part of the line, because if I take it out, the web page is fine. If I leave it in, it completely messes up my page. All the formatting is thrown off. I think it has to do with the quotes, but I've tried \" (as seen here) and \', and neither works.
I do not seem to be getting anywhere, so maybe some other eyes out in Tcl-land can help. Thanks!