Hey everyone,
I have used a textbox on blur client side event to get text on to the label like this...
now i am trying to get this value of label filed by OnBlur event on server side to save it in a data Table.But its coming null.My CS is--
This row is null when i debug using breakpoints.Hence,can't get this value inside my data Table.How should i do this?...
Thanks
Amit
I have used a textbox on blur client side event to get text on to the label like this...
function show(txtQuantityE, lblRate, lblAmount) { var txtQuantityE = $find(txtQuantityE); var lblRate = document.getElementById(lblRate); var lblAmount = document.getElementById(lblAmount); lblAmount.innerHTML = parseInt(txtQuantityE.get_value()) * parseInt(lblRate.innerHTML); }DataRow drValues = dtValues.NewRow(); drValues["Items"] = combo.SelectedItem.Text; drValues["Rate"] = lblRate.Text; drValues["Quantity"] = txtQauntityE.Text; drValues["Amount"] = lblAmount.Text; dtValues.Rows.Add(drValues); dtValues.AcceptChanges();drValues["Amount"] = lblAmount.Text;This row is null when i debug using breakpoints.Hence,can't get this value inside my data Table.How should i do this?...
Thanks
Amit