 |
|
ajax control toolkit ModalPopupExtender popup message by yourself |
|
 |
|
|
 |
 |
|

|
 |
 |
 |
 |
Date :
2014-01-16 09:13:54 |
By :
mr.win |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Protected Sub gv_production_group_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles gv_production_group.RowDataBound
If objCenter.InListOR("'" & e.Row.RowIndex & "'", "'0','4','8','12','15'") Then
e.Row.BackColor = System.Drawing.Color.FromName("#FFCCCC")
End If
If e.Row.RowType = DataControlRowType.DataRow Then
e.Row.Cells(13).Text = Convert.ToDouble( _
objCenter.ChkNullCDblReport(DataBinder.Eval(e.Row.DataItem, "1")) + _
objCenter.ChkNullCDblReport(DataBinder.Eval(e.Row.DataItem, "2")) + _
objCenter.ChkNullCDblReport(DataBinder.Eval(e.Row.DataItem, "3")) + _
objCenter.ChkNullCDblReport(DataBinder.Eval(e.Row.DataItem, "4")) + _
objCenter.ChkNullCDblReport(DataBinder.Eval(e.Row.DataItem, "5")) + _
objCenter.ChkNullCDblReport(DataBinder.Eval(e.Row.DataItem, "6")) + _
objCenter.ChkNullCDblReport(DataBinder.Eval(e.Row.DataItem, "7")) + _
objCenter.ChkNullCDblReport(DataBinder.Eval(e.Row.DataItem, "8")) + _
objCenter.ChkNullCDblReport(DataBinder.Eval(e.Row.DataItem, "9")) + _
objCenter.ChkNullCDblReport(DataBinder.Eval(e.Row.DataItem, "10")) + _
objCenter.ChkNullCDblReport(DataBinder.Eval(e.Row.DataItem, "11")) + _
objCenter.ChkNullCDblReport(DataBinder.Eval(e.Row.DataItem, "12"))).ToString("#,###")
End If
'If e.Row.RowType = DataControlRowType.Footer Then
' 'Dim lblTotal As Label = DirectCast(e.Row.FindControl("lbl_total_footer"), Label)
' 'lblTotal.Text = total.ToString()
' DataBinder.Eval(e.Row.DataItem, "1")
' DataBinder.Eval(e.Row.DataItem, "2")
' DataBinder.Eval(e.Row.DataItem, "3")
' DataBinder.Eval(e.Row.DataItem, "4")
' DataBinder.Eval(e.Row.DataItem, "5")
' DataBinder.Eval(e.Row.DataItem, "6")
' DataBinder.Eval(e.Row.DataItem, "7")
' DataBinder.Eval(e.Row.DataItem, "8")
' DataBinder.Eval(e.Row.DataItem, "9")
' DataBinder.Eval(e.Row.DataItem, "10")
' DataBinder.Eval(e.Row.DataItem, "11")
' DataBinder.Eval(e.Row.DataItem, "12")
'End If
End Sub
'Dim PV As String = "Data Source=ip;Network Library=DBMSSOCN;User ID=;Password=;"
'Dim PV As String = "Data Source=ip,1433;User ID=;Password=;"
|
 |
 |
 |
 |
Date :
2014-05-21 18:28:12 |
By :
easyduck |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|