ASP.NET Calendar control not working correctly with Mozilla Firefox

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • stephenbrown
    New Member
    • Feb 2008
    • 4

    ASP.NET Calendar control not working correctly with Mozilla Firefox

    Hello All,

    I have an ASP.NET Calendar control which works great in IE...
    but in Mozilla Firefox, when we click next/previous month links it gives 404 NOT FOUND.... basically I cannot traverse to any other month except the current month..

    The javascript executed on next/prev month click is :- __doPostBack('< name of calendar control>',<'A number representing month (I suppose)>')

    Does Mozilla have any grudges against javascript??

    Any help will be highly appreciated

    Thanks,

    Steve
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    Originally posted by stephenbrown
    Hello All,

    I have an ASP.NET Calendar control which works great in IE...
    but in Mozilla Firefox, when we click next/previous month links it gives 404 NOT FOUND.... basically I cannot traverse to any other month except the current month..

    The javascript executed on next/prev month click is :- __doPostBack('< name of calendar control>',<'A number representing month (I suppose)>')

    Does Mozilla have any grudges against javascript??

    Any help will be highly appreciated

    Thanks,

    Steve
    I've never had a problem with the calendar control in mozilla.
    Please post your asp code so that we can see what's going on.

    -Frinny

    Comment

    • drhowarddrfine
      Recognized Expert Expert
      • Sep 2006
      • 7434

      #3
      Originally posted by stephenbrown
      Does Mozilla have any grudges against javascript??
      Mozilla handles javascript much better than IE and is far more standards compliant.

      Comment

      • stephenbrown
        New Member
        • Feb 2008
        • 4

        #4
        Originally posted by Frinavale
        I've never had a problem with the calendar control in mozilla.
        Please post your asp code so that we can see what's going on.

        -Frinny
        Hi there,

        There are certain issues with the server on which the code is residing due to which I cannot get the code right now.. However, the problem is occuring at a client site.. (Unfortunately, I havent tested the code on Mozilla on the code server).

        But, what is happening is - I have a wss 3.0 site in which I have uploaded customized web parts. A few of these web parts have got links for a calendar control. What happens is when I click this calendar link a javascript is executed which makes the .aspx page containing the ASP.NET calendar control appear in a pop up window. On selecting a date in the calendar the pop up window closes and the selected date appears in the text box displayed alongside the calendar link.. now, the visible month is the current month i.e. Feb 2008.. In Mozilla if I want to select a date, say 23 March 2008, I will have to click on the next month link.. On click of this link it gives me an error saying HTTP 404 NOT FOUND... same thing happens when I click the link to display a previous month.. So I dont think there should be a problem on anything I coded because rest all is working fine... The next/prev month links are in-built in the ASP.NET calendar control...

        I hope this helps...

        Steve

        Comment

        • kenobewan
          Recognized Expert Specialist
          • Dec 2006
          • 4871

          #5
          Originally posted by stephenbrown
          Hi there,

          There are certain issues with the server on which the code is residing due to which I cannot get the code right now.. However, the problem is occuring at a client site.. (Unfortunately, I havent tested the code on Mozilla on the code server).

          <snip>

          So I dont think there should be a problem on anything I coded because rest all is working fine... The next/prev month links are in-built in the ASP.NET calendar control...

          I hope this helps...

          Steve
          I think you need to admit that you can't get the code, didn't test adequately, there is a problem with your code and that it is not the server, mozilla or Uncle Sam who is to blame for these problems. I point this out not to make fun of you, but to say that in my 8 years of programming I have been governed by simple logic - that the simpliest explanation when I had a problem is that I had made a mistake. I admit it may have taken a while to learn this and I established a vocabulary of colorful langage when I thought that no one was listening ;).

          You have already heard that the calendar control works well with mozilla. So if you are not able to show us the code, your code only residing on one server, then we are left guessing as to why you received this error. Are you using the SPCalendar object?

          Comment

          Working...