Click here to Skip to main content
15,887,856 members

Comments by jitendra raj (Top 18 by date)

jitendra raj 24-May-16 7:48am View    
thanks vijay rana ji for your reply but i simply want to add column dynamically not row
jitendra raj 11-Mar-16 0:03am View    
there is no error. i have some logical problem.
let me explain when we add two rows value for apr-16 month 1500 and 0 for may-16 month for column Admission Fee then my desired result is 1500+0 =1500 but my code give result 3000 i did not understand where i have fault in my code please let me know
jitendra raj 10-Mar-16 23:59pm View    
Dear kartik ji thanks for your reply .

let me explain when we add two rows value for apr-16 month 1500 and 0 for may-16 month for column Admission Fee then my desired result is 1500+0 =1500 but my code give result 3000 i did not understand where i have fault in my code please let me know
jitendra raj 5-Feb-16 6:40am View    
for read value from viewstate one by one not all values like as below
if (ViewState["_data"] != null)
{
List<field> fieldList = (List<field>)ViewState["_data"];

// Implement your logic
}

I want to read adm_no one by one student from viewstate not all students adm_no at time.
jitendra raj 5-Feb-16 4:33am View    
Thanks Manas ji for reply but i want to retrive value from list one by one means if we have a gridview which have 30 record per column and we store 30 students admission no. now i want to store these 30 admission no in view state from griedview and read these admission no. one by one using loop or what ever