I have ItemTemplate Column for Price , Qty and Amount. i want to calculate Amount without post backing to Server.
as i press key in qty or Price the amount must be calculated into AMount Column.
One suggestion would be attaching onfocusout to input textboxes
from code behind and pass the textbox id to the event handler. Then in
the event handler, it is possible to calculate the result and assign the
value to amount textbox. Checkout the following forum link where you
can find how to implement the functionality. Calculate the result for the row from client side