I've a hyperlink in aspx page. I edit it like this:
<asp:HyperLink ID="hypDuzenle" runat="server"
NavigateUrl='<%# String.Format("javascript:window.open('~/User/K/KPrintForm.aspx?
CD={0}&CT={1}&W={2}&SN={3}&MNR={4}&PNF={5}&MDT={6}',
'MsgWindow', 'width=200, height=100')", Eval("B_CD"), Eval("B_CZ"),
Eval("B_WE"), Eval("B_SE"), Eval("MAT"), Eval("SAT"), Eval("MAN"))%>'
ImageUrl="~/img/printer.png">
</asp:HyperLink>
However I get this error message:
Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: The server tag is not well formed.
Where can be the problem?