String Variable in Visual Studio 2008 Expression Expected -


dim html string         html = '<head> ' $_         '<title>send sms</title>' $_ '</head>' 

i having error @ line 2 expression needed.

use double quotes enclose strings. use ampersands concatenation. so:

    dim html string     html = "<head> " & _     "<title>send sms</title>" & _     "</head>" 

Comments

Popular posts from this blog

how to proxy from https to http with lighttpd -

android - Automated my builds -

python - Flask migration error -