GridView中有一些疑问

GridView中有一些疑问

本文介绍了我在ASP.NET GridView中有一些疑问的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的asp页面中,我有一个gridview。它的标题字段是

(StudentName,Mark1,Mark2,Mark3,Total)但在数据库中我有

(StudentName,Mark1,Mark2,Mark3)。




In my asp page i have one gridview. It''s header field are
(StudentName, Mark1, Mark2,Mark3, Total) but in database i had
(StudentName, Mark1, Mark2,Mark3).


This is my current gridview output
StudentName   Mark1   Mark2   Mark3 Total
Michel         10      11      50
Steven         39      50      35
Deepak         15      18      55





我需要在我的asp.net中输出如下gridview



I Need output like below in my asp.net gridview

StudentName   Mark1   Mark2   Mark3 Total
Michel         10      11      50    71
Steven         35      50      35    120
Deepak         15      18      55    88





请有人帮帮我........

推荐答案


Select Mark1,Mark2,Mark3 , (Mark1+Mark2+Mark3) Total FROM StudentMsrksTable


for (int i=0;i<gridview1.rows.count;i++)>
{
 int totalmasrks=0;
 for(int j=1;j<gridview1.columns.count-1;j++)>
 {
   totalmarks += Convert.ToInt32(GridView1.Rows[i].Cells[j].Text)
 }
 GridView1.Rows[i].Cells[4].Text= tottalmarks.toString();
}







hav美好的一天

享受:)

plz投票,如果有帮助,请点击接受ans。




hav great day
Enjoy :)
plz vote and click accept ans if it helps.


这篇关于我在ASP.NET GridView中有一些疑问的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 19:59