I have this problem: I use the jQuery UI tools to show the dialog. For this, I have a separate div , where I threw UpdatePanel and TextBox . But when a call is made to the server (when the trigger is clicked), this TextBox is empty ( TextBox.Text.Equals (String.Empty) ), like EnableViewState == false . Removed UpdatePanel from a div , put it in another place, everything works, so jQuery does something with TextBox . How can this problem be solved?

    1 answer 1

    Jquery takes the elements of the dialogue beyond the DOM, so it’s impossible to get the status of the elements directly. We must look for a workaround. And I found it :)

    • It would be interesting to see code samples how you made jQuery UI, ajax and asp.net friends. - Tolyandre