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

ASP.NET

 
GeneralRe: Sending mail..., Pin
Vasudevan Deepak Kumar29-Nov-07 19:43
Vasudevan Deepak Kumar29-Nov-07 19:43 
AnswerRe: Sending mail..., Pin
Vasudevan Deepak Kumar29-Nov-07 19:43
Vasudevan Deepak Kumar29-Nov-07 19:43 
QuestionFCKeditor Pin
mukesh.mr0329-Nov-07 19:22
mukesh.mr0329-Nov-07 19:22 
AnswerRe: FCKeditor Pin
Vasudevan Deepak Kumar29-Nov-07 19:42
Vasudevan Deepak Kumar29-Nov-07 19:42 
Questiongridview calculation Pin
yardly29-Nov-07 19:19
yardly29-Nov-07 19:19 
AnswerRe: gridview calculation Pin
MaruBindiya29-Nov-07 19:43
MaruBindiya29-Nov-07 19:43 
GeneralRe: gridview calculation Pin
Vasudevan Deepak Kumar29-Nov-07 19:58
Vasudevan Deepak Kumar29-Nov-07 19:58 
GeneralRe: gridview calculation Pin
MaruBindiya29-Nov-07 22:49
MaruBindiya29-Nov-07 22:49 
Private sum As Integer = 0

Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound
If e.Row.RowType = DataControlRowType.DataRow Then
sum = 0
For i As Integer = 0 To e.Row.Cells.Count - 1
sum += e.Row.Cells(i).Text
Next
Dim tc As New TableCell
tc.Text = sum
e.Row.Cells.AddAt(e.Row.Cells.Count, tc)
End If
End Sub

this will create one new colmn containing sum of coresponding row cells
ex:
col1 col2 col3 sum
1 2 3 6 (= 1+2+3)
4 5 6 15 (= 4+5+6)
hope this is what u wanna do


AnswerRe: gridview calculation Pin
Vasudevan Deepak Kumar29-Nov-07 19:57
Vasudevan Deepak Kumar29-Nov-07 19:57 
GeneralRe: gridview calculation Pin
yardly29-Nov-07 20:17
yardly29-Nov-07 20:17 
GeneralRe: gridview calculation Pin
Vasudevan Deepak Kumar29-Nov-07 21:56
Vasudevan Deepak Kumar29-Nov-07 21:56 
Questionstep-by-step procedure to create web setup in .NET [modified] Pin
Elena200629-Nov-07 18:12
Elena200629-Nov-07 18:12 
AnswerRe: step-by-step procedure to create web setup in .NET Pin
Christian Graus29-Nov-07 18:33
protectorChristian Graus29-Nov-07 18:33 
GeneralRe: step-by-step procedure to create web setup in .NET Pin
Michael Sync29-Nov-07 23:21
Michael Sync29-Nov-07 23:21 
AnswerRe: step-by-step procedure to create web setup in .NET Pin
Vasudevan Deepak Kumar29-Nov-07 19:44
Vasudevan Deepak Kumar29-Nov-07 19:44 
QuestionClose Pin
Smithakrishnan29-Nov-07 17:49
Smithakrishnan29-Nov-07 17:49 
AnswerRe: Close Pin
Christian Graus29-Nov-07 18:27
protectorChristian Graus29-Nov-07 18:27 
AnswerRe: Close Pin
Vasudevan Deepak Kumar29-Nov-07 19:45
Vasudevan Deepak Kumar29-Nov-07 19:45 
Questionhow i can set image url of the server image buttton using javascript Pin
jagan12329-Nov-07 17:08
jagan12329-Nov-07 17:08 
AnswerRe: how i can set image url of the server image buttton using javascript Pin
Christian Graus29-Nov-07 18:31
protectorChristian Graus29-Nov-07 18:31 
AnswerRe: how i can set image url of the server image buttton using javascript Pin
Vasudevan Deepak Kumar29-Nov-07 19:48
Vasudevan Deepak Kumar29-Nov-07 19:48 
GeneralRe: how i can set image url of the server image buttton using javascript Pin
Christian Graus29-Nov-07 19:59
protectorChristian Graus29-Nov-07 19:59 
QuestionChild window Pin
sirisha guttikonda29-Nov-07 16:27
sirisha guttikonda29-Nov-07 16:27 
AnswerRe: Child window Pin
varshavmane29-Nov-07 18:12
varshavmane29-Nov-07 18:12 
AnswerRe: Child window Pin
MaruBindiya29-Nov-07 19:26
MaruBindiya29-Nov-07 19:26 

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.