rajkumarrajendran Posted November 21, 2011 Report Share Posted November 21, 2011 Without gridview how can i show report in asp.net 1 Link to comment Share on other sites More sharing options...
sukhdev_ce 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. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now