currently I have this text
Now if that link is not a link(when i remove the code) it prints fine and even with the link it prints fine.
BUT it basically send me to the page with everything including all the text after the link even though I closed the a tag. What am I doing wrong?
Code:
sData += "<tr> \n" + "<td> \n" + "<a href=\"title.aspx?titleid= "+dr["inttitleId"].ToString() + ">" + dr["vcTitleName"].ToString() + "</a> \n" + " (" + dr["vcCertificate"].ToString() + ") " + dr["intyear"].ToString() + "<br /><br />\n" + "Starring: " + dr["actor"].ToString() + "<br /><br />\n" + "some text for testing purposes <br />\n" + "</td> \n" + "</tr> \n";
BUT it basically send me to the page with everything including all the text after the link even though I closed the a tag. What am I doing wrong?
Comment