I want to bind html from c#. I tried with the below code it's working
HtmlTextWriter.write("<a onclick=\"window.open('', '_blank', 'location=yes,height=570,width=520,scrollbars=yes,status=yes').document.write('<p>test<P>')\">);
then I try to add img tag in it then html is breaking
eg:
HtmlTextWriter.write("<a onclick=\"window.open('', '_blank', 'location=yes,height=570,width=520,scrollbars=yes,status=yes').document.write('<img src=\"path\">')\">);
please help to solve this.