Results 1 to 4 of 4

Thread: [RESOLVED] Help needed for Ajax update panel usage

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jun 2005
    Posts
    102

    Resolved [RESOLVED] Help needed for Ajax update panel usage

    Dear Friends

    1. how to use the same ajax update panel for two fields which are in different position of the html table
    e.g. txtboxA is in column 1 and ddl_B is in column 3 of the html table. is it possible to use the same update panel

    2. In a page i have four ajax autocomplete text boxes . should i have one update panel or use four update panels ?
    I have 15 fields inside the html table , if i have to use one update panel then i have to put all the fields inside the updatepanel,
    even if i dont want them for the post back

    Regards
    Sara

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Help needed for Ajax update panel usage

    1. Yes, but you'll have to surround the <tr> with the UpdatePanel You can't restrict it to specific areas without having everything in between, since UpdatePanel is just a container.

    2. It's generally a good idea to not have too many unnecessary items in the UpdatePanel - when a partial postback occurs, the HTML from within the UpdatePanel's area are sent to the server. You can therefore imagine that the more you send, the more that goes over the wire, the more the server processes. As much as possible, try to keep relevant fields in the UpdatePanel, though it is understandable that junk will get in too, depending on the page design.

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Jun 2005
    Posts
    102

    Re: Help needed for Ajax update panel usage

    Thank you for the reply

  4. #4
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: [RESOLVED] Help needed for Ajax update panel usage

    No prob

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width