I have HTML markup which working fine in c#:
return "<span style=\"background-color:yellow;\">" + "</span>";
when I try to convert to vb.net in code behind script:
return "<span style=\"background-color:yellow\">" + "</span>"
I get error: name 'yellow' is not declared
return "<span style=\"background-color:yellow;\">" + "</span>";
when I try to convert to vb.net in code behind script:
return "<span style=\"background-color:yellow\">" + "</span>"
I get error: name 'yellow' is not declared