Can anybody tell me how to fire the textchanged event of texbox inside the grid?

Questions by amit1978

Showing Answers 1 - 1 of 1 Answers

Ali Akbar

  • Jul 27th, 2006
 

Hi,

Keep some test procedure in text chnage event of the text box,

for example

in html view,

<asp:TextBox ID="TextBox1" AutoPostBack="True" OnTextChanged="Procedure1"  Runat="server"></asp:TextBox>

and in code behind,

protected void CalculatePayingFee(object sender, System.EventArgs e)
{

//your code here

}

dont forget runat=server and AutoPostBack=true for textbox.

Regards,

Akbar

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions