you may use |
| Chirag Bhavsar replied to abc V at 10-May-08 02:56 |
Hi!
you want to display the serach results based on the filters selected by use r from the check box right.
For this you may use HTML table to display the result as it comsumes less resources compared to dataGridView which is the other option.
for creation fo html table you will have to prepare a string based on the result. this string will contain the HTML tags for table, row and colun creation
assign this string to the DIV tag.
For dataGridView simply provide the result that you got in the dataSet to the gridView's data source property |
|