Dear,
I wrote below code when grid update then fire that code and set the value in TextBox/Label.
I debug the below code and see the Value is getting but not showing in TextBox/Label.
When it showing when the complete page getting refreshed.
I called in Page_Load also.
Private Sub frm_getObjectivescore()
con.Open()
cmd = New SqlClient.SqlCommand("select sum(Value) as T_Count from View_EmployeeAp Where Apr_No=" & Request("Apr_No") & "", con)
dr = cmd.ExecuteReader()
If dr.HasRows Then
While dr.Read
TextBox1.Text = Math.Round(dr("T_Count") * 0.4, 2)
End While
End If
con.Close()
End Sub
Rupali ShindePosted Oct 16, 2015, 5:44 AM
Sujeet SumanPosted Oct 11, 2015, 5:21 AM
Priyaranjan K SPosted Oct 11, 2015, 3:49 AM
Basit KhanPosted Oct 11, 2015, 3:35 AM
Sujeet SumanPosted Oct 11, 2015, 3:09 AM
Priyaranjan K SPosted Oct 11, 2015, 2:27 AM
Basit KhanPosted Oct 11, 2015, 2:15 AM
Priyaranjan K SPosted Oct 11, 2015, 1:58 AM
Sujeet SumanPosted Oct 11, 2015, 1:56 AM