Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 122993
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T04:12:59+00:00 2026-05-11T04:12:59+00:00

I’ve a simple asp.net page (framework 3.5) and an UpdatePanel with a series of

  • 0

I’ve a simple asp.net page (framework 3.5) and an UpdatePanel with a series of dropdownlist I want to populate asyncronously. All works fine in all major browsers (Opera, Safari, IE6, IE7, FF3), but not in Chrome.

Chrome seems to ignore the SelectedIndexChanged event who had to make the asynch request.

Anyone knows a simple workaround to this? Thanks!

EDIT: More Informations

As I say to Adam Lassek, the updatepanel refresh after the click to an asp:Button inside of it, but it doesn’t work with the dropdown’s SelectedIndexChanged event.

The updatepanel is set like:

<asp:UpdatePanel ID='updPanel' runat='server' UpdateMode='Always' ChildrenAsTriggers='true'> 

without Triggers specified, and the dropdows have sets AutoPostBack='true'

UPDATE: (and retagging)

After a few attempts I discover that it isn’t a problem of the UpdatePanel, but it seems that the AutoPostback of dropdowns doesn’t work properly, even in pages without ScriptManager and UpdatePanel… I’m sure that it is a problem concerning only this project, because if I start a new WebSite from scratch and replicate the structure of this, works fine in Chrome… I’m trying to remove step by step all the other things in the original project to find exactly what’s the problem.

If anyone has some ideas in meantime….

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T04:12:59+00:00Added an answer on May 11, 2026 at 4:12 am

    There is a known incompatibility with Ajax.NET and Chrome & Safari 3.

    Small, quick tests can be deceptive because it will appear to work fine with the existing Ajax.NET library as is. This is because it manages to perform the first Ajax request and fails when that ends, so only when you try to perform the second Ajax action will you notice it has failed. If you put an UpdateProgress control on your page, you’ll notice that after the first request your UpdateProgress control won’t disapppear.

    Luckily, there is an answer!

    Recently there was a great post put up detailing what to do which you can find here:

    http://blog.turlov.com/2009/01/aspnet-ajax-compatibility-patch-for.html

    The general gist of it is that both Chrome and Safari 3 report themselves as WebKit in their userAgent strings.

    You need to add a little bit of javascript in to aid the Ajax.NET framework in recognising WebKit based browsers that looks like the following:

    if (typeof(Sys.Browser.WebKit) == 'undefined') {     Sys.Browser.WebKit = {}; }  if (navigator.userAgent.indexOf('WebKit/') > -1 ) {     Sys.Browser.agent = Sys.Browser.WebKit;     Sys.Browser.version =          parseFloat(navigator.userAgent.match(/WebKit\/(\d+(\.\d+)?)/)[1]);     Sys.Browser.name = 'WebKit'; } 

    You need to add that to a javascript file and reference it in your ScriptManager:

    <asp:ScriptManager ID='ScriptManager1' runat='server'>     <Scripts>         <asp:ScriptReference Path='~/assets/javascript/WebKit.js' />     </Scripts> </asp:ScriptManager> 

    Note that you can keep the WebKit.js in an assembly and reference that by using a ScriptReference tag similar to this:

    <asp:ScriptReference Assembly='Scripts' Name='Scripts.webkit.js' /> 

    Once you’ve done all that, if at all possible stop using WebForms and Ajax.NET and use MVC and jQuery 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.