Dim strPopup as String = "<script>alert('hello world');</script>"
The closing script tag is screwing up the vb code. I don't know why..This is a protection to avoid script tags in asp.net code which can break the server-side scripts in ASP.NET (when a </script> is detected). Use this little workaround to solve the problem:
Dim strPopup as String = "<script>alert('hello world');</script"+">".
Another solution is to avoid the direct use of <script> tags by using the properties of, for example, the <body> section of the page:
<body onload="alert('hello world');">
...
No comments:
Post a Comment