html to string

  • Thread starter Thread starter Cemal
  • Start date Start date
C

Cemal

Hi guys
I have an html stream that I want to transfer it to a varible and that
variable into sql server.

problem is when I do this

dim myvariable as string = "<span style=\""font: 12px arial; color :
#000000; text-decoration : none;\""><br>MODEL- USB01000C01CL VENDOR-
ACTIONTEC ELECTRONICS<br> <br>FEATURES- VoSKY Chatterbox for Skype<br>
........


this html stream only transferred to "<span style=\""fo
and when I try to print it on the screen, it prints nothing.

so,. I need to know how to transfer html streams into variables without
loosing any part of it.

thanks
Cemal
 
Cemal said:
Hi guys
I have an html stream that I want to transfer it to a varible and that
variable into sql server.

problem is when I do this

dim myvariable as string = "<span style=\""font: 12px arial; color :
#000000; text-decoration : none;\""><br>MODEL- USB01000C01CL VENDOR-
ACTIONTEC ELECTRONICS<br> <br>FEATURES- VoSKY Chatterbox for
Skype<br> .......


this html stream only transferred to "<span style=\""fo
and when I try to print it on the screen, it prints nothing.

so,. I need to know how to transfer html streams into variables without
loosing any part of it.

thanks
Cemal

What you presented will not even compile. How do you know what the contents
of the variable are? How did those contents get there?

We need to see some code.

LS
 
Cemal,

This should work, but why are you not using instead of the C kind of
litteral \"" just the single quote ' , that is excepted in the same way and
is easier to use both in JavaScript and in VB.Net

Cor
 
Back
Top