I have a report which has a Group Heading Row which has a group item, I have enabled drill down but I would like the headings for the details only to appear when the users dills down. By default the details headings are shown all the time in the Group Heading line, I thought there may be a Detail heading Row? Is their such a thing or does anybody know how I can get around this?
Also can I squeeze in another quick question, I am calling a my SQL Report via a webservice, but I dont know how to write my report out to a Placeholder on my page. I am currently using the response.BinaryWrite method
Dim results As [Byte]()
results = rs.Render("/nsdReports/SearchTypes", "HTML4.0", Nothing, _
"<DeviceInfo><HTMLFragment>True</HTMLFragment></DeviceInfo>", Nothing,_
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)
' Write the results to the current Web page
Response.BinaryWrite(results)
I would like to do something like PlaceHolder1.Controls.Add(usercontrol) but I dont know how to do this with a binary object?
Thanks in advance
How about using a Literal control? Example is available athttp://www.startvbdotnet.com/aspsite/controls/label.aspx#literal
|||I've done that by adding a new row to the group header that contains the detail column names. Set it to invisible and its toggle item to be the first row in the group header. When you click the group header, the 'detail header' with the detail lines below it will become visible.
No comments:
Post a Comment