I want to make some ajax control and for that I need table as result. Everything works fine if I write Response.Write("<table><tr><td>.." ) but when I create Table object and fill it with rows and cells I can’t get it in text stream format.
When I use ToString method form Table object I get something like System.Web.Table but I need <table><tr><td>...
Does anyone knows how to convert asp.net object to String (text stream)?