开发者

HTML:Server Tag Not well Formed

开发者 https://www.devze.com 2023-02-16 03:56 出处:网络
Hi all I get the Server Tag Not Well Formed e开发者_运维问答rror on the following line of code.

Hi all I get the Server Tag Not Well Formed e开发者_运维问答rror on the following line of code.

<a class="button"><span><input id="btnEmbedCodes" type="button" 
value="Click for Embed Codes" onclick='javascript:window.open("%=ExternalLink%>","ExternalFeeds","height=575,width=675,
scrollbars=yes,overflow-x:hidden")'; Style="width:165px" /></span></a>

Please help me out. Thanks


window.open("%=ExternalLink%>"

In this starting "<" is missing. Seems like that is the problem.


It looks like you missed a < in the first argument of your javascript function


You are missing the opening bracket before ExternalLink


You have missed less than sign (<) before ExternalLink and also surround it with single quotes rather than double quotes.

Thanks.

0

精彩评论

暂无评论...
验证码 换一张
取 消