Automatically_clearing

Asked By Lokesh M
20-Nov-09 05:25 AM
Earn up to 0 extra points for answering this tough question.

Hi,

I have a textbox within update panel, Example:

"updatepanel1.ContentTemplate.txtName" - When page gets load, i will type something in this textbox, but after one or two seconds "contents of the textbox get clears automatically", This is happening only when page loads first time.

When it clears text box contenst automatically, if i type some text again it will never clear, Only very first time it is clearing..

many thanks

  check this

Jack jack replied to Lokesh M
20-Nov-09 05:53 AM
check all the flow with debug mode that is there some where value of text is not clearing...

  Re

Lokesh M replied to Jack jack
20-Nov-09 07:04 AM

I have solved the problem like this

before:

<asp:UpdatePanel ID="UpdatePanel3" runat="server" UpdateMode="conditional">

i have added like this

<asp:UpdatePanel ID="UpdatePanel3" runat="server" UpdateMode="conditional" ChildrenAsTriggers="False">

Now the problem is solved... There may be multiple solution to solve the problem, above code is worked for me...

Create New Account