Results 1 to 7 of 7

Thread: ASP.Net on Mac

  1. #1

    Thread Starter
    Frenzied Member Magiaus's Avatar
    Join Date
    Mar 2002
    Location
    swamp land
    Posts
    1,267

    ASP.Net on Mac

    Okay. Does anyone know anything about how well Asp.Net does with mac. In theory there should be no worries unless there is a javascript issue. Here is the thing 2 people with Mac OS X can't login into the website. I have no mac...

    They could be idiots or something but I dunno. Safari and IE5.5 for mac are being used. The login uses an asp:button....
    Magiaus

    If I helped give me some points.

  2. #2
    Banned jhermiz's Avatar
    Join Date
    Jun 2002
    Location
    Antarctica
    Posts
    2,492

    Re: ASP.Net on Mac

    Quote Originally Posted by Magiaus
    Okay. Does anyone know anything about how well Asp.Net does with mac. In theory there should be no worries unless there is a javascript issue. Here is the thing 2 people with Mac OS X can't login into the website. I have no mac...

    They could be idiots or something but I dunno. Safari and IE5.5 for mac are being used. The login uses an asp:button....
    asp.net is running on IIS on the server not the client. i have never had heard of this issue in the past.


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

    Re: ASP.Net on Mac

    It would probably be some sort of a javascript problem with the viewstate or even the validation.

    Is there an IE 6.0 for Mac? If so, then tell them to upgrade. Or whatever the latest version is.

  4. #4

    Thread Starter
    Frenzied Member Magiaus's Avatar
    Join Date
    Mar 2002
    Location
    swamp land
    Posts
    1,267

    Re: ASP.Net on Mac

    Quote Originally Posted by jhermiz
    asp.net is running on IIS on the server not the client. i have never had heard of this issue in the past.

    JavaScript fires the Server Side code. If for some reason mac screws that up IIS isn't a factor.

    I'm thinking that it may be something do to with the built in ASP.Net scripting but I'm not sure. I don't think there is an IE update for mac either.

    I need a mac.... Oh! it also could have to do with SmartNav that Iframe bs could be to blame.... I have it set to true
    Last edited by Magiaus; Jan 11th, 2005 at 09:06 AM.
    Magiaus

    If I helped give me some points.

  5. #5

    Thread Starter
    Frenzied Member Magiaus's Avatar
    Join Date
    Mar 2002
    Location
    swamp land
    Posts
    1,267

    Re: ASP.Net on Mac

    Code:
    <script language="javascript">
    <!--
     function __doPostBack(eventTarget, eventArgument) {
      var theform;
      if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) {
       theform = document.forms["Welcome"];
      }
      else {
       theform = document.Welcome;
      }
      theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
      theform.__EVENTARGUMENT.value = eventArgument;
      theform.submit();
     }
    // -->
    </script>

    If the Mac browser can not parse the view state or has any problem in this function it's all over...
    This has to be what is happening I'm just not sure why.
    Magiaus

    If I helped give me some points.

  6. #6
    Addicted Member WALDO's Avatar
    Join Date
    Aug 2002
    Location
    Swing of Prussia, PA
    Posts
    244

    This may be out of the blue, but...

    If you are using Windows Integrated Authentication for your security, then that would be your problem. IE on Windows boxes are the only browsers that can participate in that kind of authentication.

  7. #7

    Thread Starter
    Frenzied Member Magiaus's Avatar
    Join Date
    Mar 2002
    Location
    swamp land
    Posts
    1,267

    Re: ASP.Net on Mac

    It's pure DB. I wouldn't use Windows Intergrated unless it was an intranet or something.
    Magiaus

    If I helped give me some points.

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