In MicrosoftAjax.js.  Do a search for \x0, there's only one match.

On Aug 12, 2:40 am, Aphoenix <[EMAIL PROTECTED]> wrote:
> Where did you change that?
>
> On Aug 11, 11:07 am, djMax <[EMAIL PROTECTED]> wrote:
>
> > Curiously, this fixes it:
>
> > Sys.Serialization.JavaScriptSerializer._stringRegEx=/"\b\f\n\r\t\\\\
> > \x00-\x1F]/i;
>
> > On Aug 11, 11:00 am, djMax <[EMAIL PROTECTED]> wrote:
>
> > > Through some painful old-world debugging, this line of the MS Ajax
> > > script throws an exception (Invalid Regular Expression)
>
> > > Sys.Serialization.JavaScriptSerializer._stringRegEx=new RegExp('["\b\f
> > > \n\r\t\\\\\x00-\x1F]',"i");
>
> > > and it's the \x00-\x1F that's killing it.
>
> > > On Aug 11, 10:18 am, acidscan <[EMAIL PROTECTED]> wrote:
>
> > > > Well, the application runs perfectly with safari/ie/firefox and iphone
> > > > previous to update (i'm talking about partial postbacks), now always
> > > > the iphone makes a full postback, but all the browsers work perfectly
> > > > with partial postbacks (including safari which is the only formats ok
> > > > the website)
>
> > > > see herehttp://sexcal.dynadel.com
>
> > > > On Aug 11, 10:05 am, djMax <[EMAIL PROTECTED]> wrote:
>
> > > > > I'm confused... Are you saying it was your bug?  Because I've had a
> > > > > similar problem after the update.  Javascript that works in IE,
> > > > > Firefox, and Safari on the desktop all of the sudden doesn't work on
> > > > > the phone.  I've narrowed it down to some sort of parse problem,
> > > > > because some functions that are in the included scripts are not
> > > > > defined (somewhere around the javascript serialization functions it
> > > > > fails).
>
> > > > > My URL is:http://tools.povo.com/iPhone/
>
> > > > > Do we know of actual changes to parsing or execution logic for
> > > > > Javascript in the update?
>
> > > > > On Aug 10, 10:36 am, acidscan <[EMAIL PROTECTED]> wrote:
>
> > > > > > It looks like we, the ".net people", are guilty about the onsubmit 
> > > > > > not
> > > > > > working....., very fanboy answer.
>
> > > > > > Thanks, for your response.
>
> > > > > > On Aug 9, 9:12 pm, Jake <[EMAIL PROTECTED]> wrote:
>
> > > > > > > it was definitely part of the anti-microsoft cabal that declared 
> > > > > > > that
> > > > > > > no .net page shall work on the iPhone.
>
> > > > > > > Start debugging... obviously the request is coming back 
> > > > > > > differently
> > > > > > > than before.
>
> > > > > > > don't you .net people have logs or debugging code?
>
> > > > > > > On Aug 9, 2007, at 11:49 AM, acidscan wrote:
>
> > > > > > > > To me it's a fact, after the firmware update (1.0.1 1C25) the 
> > > > > > > > AJAX.NET
> > > > > > > > applications don't work anymore as AJAX should work, only as 
> > > > > > > > normal
> > > > > > > > webpages (full page postback), looks like the form's submit code
> > > > > > > > implementation was changed (hope it was not on purpose).
>
> > > > > > > > Here is some super simple test code.
>
> > > > > > > > --- FILE: Default.aspx -----
>
> > > > > > > > <%@ Page Language="C#" AutoEventWireup="true"
> > > > > > > > CodeFile="Default.aspx.cs" Inherits="_Default" %>
>
> > > > > > > > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" 
> > > > > > > > "http://www.w3.org/
> > > > > > > > TR/xhtml11/DTD/xhtml11.dtd">
> > > > > > > > <html xmlns="http://www.w3.org/1999/xhtml";>
> > > > > > > > <head runat="server">
> > > > > > > >     <title>Untitled Page</title>
> > > > > > > > </head>
> > > > > > > > <body>
> > > > > > > >     <form id="form1" runat="server">
> > > > > > > >         <ajaxToolkit:ToolkitScriptManager ID="ScriptManager1"
> > > > > > > > runat="server" />
> > > > > > > >         <div>
> > > > > > > >              <asp:Button ID="Button1" runat="server"
> > > > > > > > OnClick="Button1_Click" Text="Button"
> > > > > > > >                 Width="194px" />
> > > > > > > >             <br />
> > > > > > > >             <asp:UpdatePanel ID="UpdatePanel1" runat="server">
> > > > > > > >                 <ContentTemplate>
> > > > > > > >                     <asp:Label ID="Label1" runat="server"
> > > > > > > > Text="Label"></asp:Label>
> > > > > > > >                 </ContentTemplate>
> > > > > > > >                 <Triggers>
> > > > > > > >                     <asp:AsyncPostBackTrigger 
> > > > > > > > ControlID="Button1" />
> > > > > > > >                 </Triggers>
> > > > > > > >             </asp:UpdatePanel>
> > > > > > > >         </div>
> > > > > > > >     </form>
> > > > > > > > </body>
> > > > > > > > </html>
>
> > > > > > > > --- FILE: Default.aspx.cs -----
>
> > > > > > > > using System;
> > > > > > > > using System.Data;
> > > > > > > > using System.Configuration;
> > > > > > > > using System.Web;
> > > > > > > > using System.Web.Security;
> > > > > > > > using System.Web.UI;
> > > > > > > > using System.Web.UI.WebControls;
> > > > > > > > using System.Web.UI.WebControls.WebParts;
> > > > > > > > using System.Web.UI.HtmlControls;
>
> > > > > > > > public partial class _Default : System.Web.UI.Page
> > > > > > > > {
> > > > > > > >     protected void Page_Load(object sender, EventArgs e)
> > > > > > > >     {
> > > > > > > >     }
> > > > > > > >     protected void Button1_Click(object sender, EventArgs e)
> > > > > > > >     {
> > > > > > > >         Label1.Text = "Time:  " + DateTime.Now.ToString();
> > > > > > > >     }
> > > > > > > > }- Hide quoted text -
>
> > - Show quoted text -


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"iPhoneWebDev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/iphonewebdev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to