Hello Can Any one have idea about below code and its related error.
code:
Text = " <a href=""#"" onclick=""javascript:popup('" & dvStressdays.ClientID & "');" & _
hdnCurrentSequenceName.ClientID & ".value='" & sequenceNode.Value & _
hdnCurrentSequenceTestTypeId.ClientID & ".value='" & intSequencesTestTypesId & _
"'; "">Change Stressdays</a>"
Error
Expected ‘;’
Info is appriciated!
You have an extra
javascript:, but that doesn’t break anything. The real error is, as the browser said, you are missing a semicolon (and a closing quote). I added it back (end of second line).