2010.1.706.35, VS2008 IE8
I have master/child table where the child table is bound by "Client" for performance reasons, so each page's client details are retrieved with the parent record.
I also have an Export button but I am only outputting the master table information. However it's very slow (I have other exports not involving bind by Client and it's fast) so I believe the Grid is also trying to retrieve child table information during export. There are only 1,500 rows at the parent table. Tried exporting via CSV or Excel HTML.
1) Is there a way to prevent detail table binding in code behind when exporting? (other than not declaratively using bind by "Client" at all)
2) When using Excel HTML export, I noticed the result has garbage information and I believe this is because one of the detail table field can store HTML comments. What's the typical way to resolve exporting in HTML when the field value might have HTML tags?
I have master/child table where the child table is bound by "Client" for performance reasons, so each page's client details are retrieved with the parent record.
I also have an Export button but I am only outputting the master table information. However it's very slow (I have other exports not involving bind by Client and it's fast) so I believe the Grid is also trying to retrieve child table information during export. There are only 1,500 rows at the parent table. Tried exporting via CSV or Excel HTML.
1) Is there a way to prevent detail table binding in code behind when exporting? (other than not declaratively using bind by "Client" at all)
2) When using Excel HTML export, I noticed the result has garbage information and I believe this is because one of the detail table field can store HTML comments. What's the typical way to resolve exporting in HTML when the field value might have HTML tags?