all groups > asp.net datagrid control > june 2007
GridView Hide empty row (vb)
Posted by labsRcool NO[at]SPAM community.nospan at 6/18/2007 10:51:00 PM
Hi,
I have read several resources on the internet and MSFT newsgroups on how to
insert data using the footer in the datagrid control.
To solve the empty data set problem, I added a blank row in the datasource
select statement, using the union command to create the additional blank row,
m... more >>
Paging
Posted by Jason Teagle at 6/17/2007 10:48:31 AM
I'm rather confused / frustrated with paging. It seems impossible.
I have a database with X rows in a table, and I want to present a grid that
shows a paged view of just 10 items, and let the user navigate through he
entire table 10 items at a time. Simple enough, right?
If I set AllowPagi... more >>
Performance issues with Retrieving data
Posted by Sanjay Pais at 6/11/2007 1:30:36 PM
I have a table with over 1.3 million rows. I am retrieving only 20 at a time
using the with - over clauses
In query analyser, the data is retrieved in under a second.
When retrieving using the data adaptor.fill or datareader to retrieve the
data it takes over 24 seconds.
public System.Dat... more >>
GridView issue when export to excel
Posted by Gunawan at 6/5/2007 12:00:00 AM
Hi there,
I am using this code that I have found in the internet to generate excel
output.
Response.Clear();
Response.AddHeader("content-disposition",
"attachment;filename=kirim.xls");
Response.Charset = "";
// If you want the option to open the Excel file ... more >>
Iterate through the controls of a ItemTemplate
Posted by Joe Abou Jaoude at 6/3/2007 5:40:59 AM
Hi,
I have a datagrid with boudcolums and templatecolumns. The
templatecolums have a ItemTemplate that contains controls.
I would like to iterate through these controls. I cannot use the
FindControl method because I dont know the ID of the controls. I don't
even know the type of the control... more >>
|