Hi Guys
I've been here before but cannot get the syntax right.
On my ASP page I assign
All works OK - When you hover over radio button you get displayed "DO Not Know"
If I assign txtA1Grade a value from a variable
where variable strResponse is "Do Not Know"
When you hover over the radio button I get "DO" displayed rather than "DO Not Know"
I've played with CStr but to no avail.
Any pointers....
Many thanks in advance
TabbyTab
I've been here before but cannot get the syntax right.
On my ASP page I assign
Code:
txtA1Grade="""Do Not Know"""
Code:
Response.Write ("<input name=J type=radio title=" & txtA1Grade &"/>")
All works OK - When you hover over radio button you get displayed "DO Not Know"
If I assign txtA1Grade a value from a variable
Code:
txtA1Grade=strResponse
When you hover over the radio button I get "DO" displayed rather than "DO Not Know"
I've played with CStr but to no avail.
Any pointers....
Many thanks in advance
TabbyTab