Hello
I am getting an error message in a page which is supposed to show records in a table:
Microsoft VBScript compilation error '800a0409'
Unterminated string constant
/w3Test/addShow.asp, line 37
Response.Write("<tr><td>Full Name</td></td>Sex</td><td>Country</td><td>Hobbies</td><td>Favourite Person</td></tr>
-----------------------------------------------------------------------------------------------------------------^
The code I have is:
Response.Write("<tr><td>Full Name</td></td>Sex</td><td>Country</td><td>Hobbies</td><td>Favourite Person</td></tr>
Response.Write("<tr><td>" & TBL("FullName") & "</td><td>" & TBL("Sex") & "</td><td>" & TBL("Country") & "</td><td>" & TBL("Hobbies") & "</td><td>" & TBL("FavouritePerson") & "</td></tr>")
Thanks for any suggestions or ideas.
Cheers
Steve
I am getting an error message in a page which is supposed to show records in a table:
Microsoft VBScript compilation error '800a0409'
Unterminated string constant
/w3Test/addShow.asp, line 37
Response.Write("<tr><td>Full Name</td></td>Sex</td><td>Country</td><td>Hobbies</td><td>Favourite Person</td></tr>
-----------------------------------------------------------------------------------------------------------------^
The code I have is:
Response.Write("<tr><td>Full Name</td></td>Sex</td><td>Country</td><td>Hobbies</td><td>Favourite Person</td></tr>
Response.Write("<tr><td>" & TBL("FullName") & "</td><td>" & TBL("Sex") & "</td><td>" & TBL("Country") & "</td><td>" & TBL("Hobbies") & "</td><td>" & TBL("FavouritePerson") & "</td></tr>")
Thanks for any suggestions or ideas.
Cheers
Steve