what I want to do is create the following
for(int i = 0; i < numberOfAnswers; i++){
imgString = imgString + "<td><asp:ImageButton id='" + questionName + "' ImageURL='Styles/unClicked.png' runat='server' /></td>";
}
but when I use HTMLTextWriter to write the string out, it attualy writes the tags out exsatly instead of converting them to html.
Do I have to write them in HTML and use javascript to call a method, or is there a way I can do this without getting that complicated?
ImageButtonto it