I'm having the strangest issue with iPhones / Droids / iPads on an ASP.NET Webforms Login page.
Everything is working, the username/password Javascript validation triggers everything... When the user pushes Submit, the page simply times out for a very long time, and this error appears. I'm not sure if this is some strange JS / Back-end / etc type of issue!
ReferenceError: Can't find variable: WebForm_DoPostBackWithOptions
On the button itself, the generated code from ASP.NET is:
href='javascript:WebForm_DoPostBackWithOptions(new
WebForm_PostBackOptions("ctl00$MainContent$btnSubmit", "", true,
"LoginUserValidationGroup", "", false, true))'
As for the Back-end the event doesn't do anything special besides Login validation!
Protected Sub btnSubmit_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnSubmit.Click
' Check U/Password etc...
End Sub
Has anyone run into this issue before??