Link to home
Start Free TrialLog in
Avatar of paulCardiff
paulCardiff

asked on

Ajax not working in Firefox 2..0.0.20

For some reason i cant see to get even the most basic ajax via vs 2008, to work in FF. It works fine in ie but not here.

The code seems to run - but it doesnt get shown in the UI - and i just end up getting a timeout error?

I'm i missing anything obivous here? and is there an easy way to get this working?

Thanks
Paul
<%@ Page Language="VB" 
    AutoEventWireup="false" 
    CodeFile="testAbout.aspx.vb" 
    EnableEventValidation ="false"
    Inherits="modules_UserManagment_test"
  %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <asp:UpdatePanel ID="UpdatePanel1" runat="server" >
        <ContentTemplate>
            <asp:Button  runat="server" ID="uxGetTime" Text="GET TIME" />
            <asp:TextBox runat="server" ID="uxResult" ></asp:TextBox>
        </ContentTemplate>
    </asp:UpdatePanel>
    </form>
</body>
</html>
 
 
-----------------------------------------------------------------------------
 
Partial Class modules_UserManagment_test
    Inherits System.Web.UI.Page
 
    Protected Sub uxGetTime_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles uxGetTime.Click
        uxResult.text = Now.tostring
    End Sub
 
End Class

Open in new window

Avatar of samtran0331
samtran0331
Flag of United States of America image

Did you post the correct FireFox version?
If yes, that version has to be at least a couple years old....
I don't have any problems (directly relating to Ajax anyway) using Firefox 3.0.7
Avatar of paulCardiff
paulCardiff

ASKER

Yes that the right version - i.e. 2.0.0.20 however my laptops only a year old and ajax been around much longer i guess?

But either way - are you suggesting that this version of FF doesnt support Ajax?
The code you posted is simple enough...and I don't see anything wrong with it.
And as you say it works in IE....I would at least try making sure FireFox is up to date.

Ajax has been around longer than a year...but keep in mind that when you're using ASP.Net and Visual Studio...you are using Microsoft's implementation of AJAX, not truly "pure" Ajax.
And you're using the latest version of Microsoft ajax (3.5) when using VS2008....so I wouldn't be that surprised if the "newest Microsoft technology" is somewhat incompatible with older browsers...
Thanks but the problem i have is - upgrading to the latest version of FF isnt the anwser - as i need to simulate - end users, and as such account for users using this version FF.

So with that in mind i'm looking for a workaround - as i've yet to confirm if this is the case and/or if i can find a solution to this problem.
ASKER CERTIFIED SOLUTION
Avatar of samtran0331
samtran0331
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial