Click here to Skip to main content
15,902,112 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Need SSRS format help Pin
siddisagar28-Dec-09 21:31
siddisagar28-Dec-09 21:31 
GeneralRe: Need SSRS format help Pin
sashidhar28-Dec-09 22:39
sashidhar28-Dec-09 22:39 
QuestionInserting Empty Row in Grid View in ASP Dot net + vb dot net Pin
Tufail Ahmad28-Dec-09 18:43
Tufail Ahmad28-Dec-09 18:43 
AnswerRe: Inserting Empty Row in Grid View in ASP Dot net + vb dot net Pin
vinodkrebc28-Dec-09 19:48
vinodkrebc28-Dec-09 19:48 
GeneralRe: Inserting Empty Row in Grid View in ASP Dot net + vb dot net Pin
Tufail Ahmad28-Dec-09 20:16
Tufail Ahmad28-Dec-09 20:16 
AnswerRe: Inserting Empty Row in Grid View in ASP Dot net + vb dot net Pin
nagendrathecoder28-Dec-09 20:27
nagendrathecoder28-Dec-09 20:27 
AnswerRe: Inserting Empty Row in Grid View in ASP Dot net + vb dot net Pin
Abhishek Sur28-Dec-09 20:52
professionalAbhishek Sur28-Dec-09 20:52 
AnswerRe: Inserting Empty Row in Grid View in ASP Dot net + vb dot net Pin
dongavipul28-Dec-09 20:57
dongavipul28-Dec-09 20:57 
Hi,
for that you can add footer template in your grid view and take rowdatbound event of the gridview at server side. in the rowdatbound event you can check each row this way

protected void GVLeavelist_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
// Fetch each row here and calculate the data
ViewState["Total"] = 'Your Value';
}
else if((e.Row.RowType == DataControlRowType.Footer)
{
// then used viewstate value to display the total
}
}
AnswerRe: Inserting Empty Row in Grid View in ASP Dot net + vb dot net Pin
satalaj29-Dec-09 1:19
satalaj29-Dec-09 1:19 
QuestionHow the Filter by tag feature on Code Project is done ? Pin
Pradeep_Nair28-Dec-09 14:33
Pradeep_Nair28-Dec-09 14:33 
QuestionImporting .cer into .pfx Pin
siva.lankada28-Dec-09 13:32
siva.lankada28-Dec-09 13:32 
QuestionTreeview indentation not proper for last node Pin
pranilrao28-Dec-09 11:02
pranilrao28-Dec-09 11:02 
AnswerRe: Treeview indentation not proper for last node Pin
pranilrao29-Dec-09 11:47
pranilrao29-Dec-09 11:47 
QuestionHow to write user control ? Pin
paper6728-Dec-09 5:56
paper6728-Dec-09 5:56 
QuestionUsing FaceBook in ASP Pin
Anil Kumar.Arvapalli28-Dec-09 3:36
Anil Kumar.Arvapalli28-Dec-09 3:36 
AnswerRe: Using FaceBook in ASP Pin
sashidhar28-Dec-09 6:13
sashidhar28-Dec-09 6:13 
QuestionDatabase searching Pin
sv_vasja28-Dec-09 1:17
sv_vasja28-Dec-09 1:17 
AnswerRe: Database searching Pin
ProtoBytes28-Dec-09 12:33
ProtoBytes28-Dec-09 12:33 
GeneralRe: Database searching Pin
sv_vasja28-Dec-09 21:19
sv_vasja28-Dec-09 21:19 
GeneralRe: Database searching [Null Values] Pin
ProtoBytes29-Dec-09 3:27
ProtoBytes29-Dec-09 3:27 
GeneralRe: Database searching [Null Values] Pin
sv_vasja29-Dec-09 21:35
sv_vasja29-Dec-09 21:35 
GeneralRe: Database searching [Null Values] Pin
ProtoBytes30-Dec-09 3:30
ProtoBytes30-Dec-09 3:30 
QuestionOnline Update Issue! Pin
Sr...Frank27-Dec-09 23:54
Sr...Frank27-Dec-09 23:54 
AnswerRe: Online Update Issue! Pin
Sr...Frank28-Dec-09 4:53
Sr...Frank28-Dec-09 4:53 
QuestionRow should be bold in SSRS Pin
siddisagar27-Dec-09 20:27
siddisagar27-Dec-09 20:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.