The 'meta' Start Tag On Line 15 Does Not Match The End Tag Of 'head'. Line 177, Position 3
Solution 1:
Sometimes <meta>
and <link>
tags may show these errors maybe because they're not closed properly.
Make sure that:
Solution 2:
This error probably comes from ClickOnce installer which tries to connect to the server which should contain application manifest and other binary files to be downloaded by setup executable.
Problem is, instead of manifest it receives pure HTML (probably some kind of 404 Not Found page) which is parsed (it's still XML after all) and of course the parse error is reported.
I know this is old answer but it came up with my Google search and seems most relevant to the problem I had. Might save someone some time. In my case it was server side security feature which prevents bots and other malicious software which might scrape our website (and download attachments) depleting available transfer limit.
Post a Comment for "The 'meta' Start Tag On Line 15 Does Not Match The End Tag Of 'head'. Line 177, Position 3"