Hi,
I want to display dynamic table inside body.
this is my code
Response.Write("<div style=' top:200px;left:200px;'>");
Response.Write("<table cellspacing='0' border='1' rules='All' >");
Response.Write("<tr ><td>ID1</td><td>Fname</td><td>Lname</td></tr>");
Response.Write("<tr ><td>100</td><td>Arun</td><td>Kumar</td></tr>");
Response.Write("</table>");
Response.Write("<div>");
problem is it is displaying out side of body.
how to solve this.
Regards
Baiju