I'm back...How could I add what's in these labels "area" and "doc_name" to the caption in the export to excel gridview?
<divclass="style3"><asp:DataListID="DataList2"runat="server"
DataSourceID="AreaName"ToolTip="Area"style="font-weight: 700"Width
="404px">
<ItemTemplate
>
Area
<asp:LabelID="Label1"runat="server"Text='<%# Eval("area") %>'></asp:Label>
-
<asp:LabelID="Label2"runat="server"Text='<%# Eval("doc_name") %>'></asp:Label>
</ItemTempl
ate>
I have this:
GridView1.Caption =
"T16 DI Area Pending Claims Listings "
How do I add the area and doc_name to this?