rajkumarrajendran 1 Posted November 21, 2011 Report Share Posted November 21, 2011 Without gridview how can i show report in asp.net 1 Quote Link to post Share on other sites
sukhdev_ce 0 Posted December 11, 2011 Report Share Posted December 11, 2011 Hi!Simple you can use tables TAG of HTML code.define the tags in response.write in side the loop, read values from your Database and put it into the tables tag. like thisR.W("<Table border='1'>");for (r=0;r<Ds.Tables[0].Rows.Count;r++){R.W("<TR>");for (c=0;c<Ds.Tables[0].Columns.Count;c++){R.W("<TD>"+Ds.Tables[0].Rows[r][c].ToString()+"</TD>");}R.W("</TR>");}R.W("</Table>"); OK, Try your code like this. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.