Hi,
I need some help with a literal in VB.Net
litHtml.Text = "<INPUT type="text" name="TargetSel">"
I have a problem with the "
how can i write this same statement in a way thet the visual studio doesnt
interpret the "" as the end of the statement but as another character without
any meaning?
Thank you in advance
Mythran - 09 May 2005 16:48 GMT
> Hi,
> I need some help with a literal in VB.Net
[quoted text clipped - 5 lines]
> any meaning?
> Thank you in advance
litHtml.Text = "<input type=""text"" name=""TargetSel"">"
:) HTH
Mythran