I create HTML table in asp.net forum like this;
for(int i=0; i<count; i++)
Response.Write("<TABLE><TR><TD width...
All created table have a one row (<TD>) and all <TD> contain one link like this;
...<a href=\"Post.aspx\">" + discussionTopic + "</a>...
User press the Link so open Post.aspx page. I want to send informatin (Topic ID) when link is clicking. How can I do? I try LinkButton but its not working in Response.Write(). How can I send data to Post.aspx when user click the link?
Best Regards...