ipad and asp forms

Associate
Joined
24 Dec 2002
Posts
900
Location
Barnsley
I have basic code

<!DOCTYPE html>
<html>
<body>
<form action="test.asp" method="post">
Your name: <input type="text" name="fname" size="20" />
<input type="submit" value="Submit" />
</form>
<%
dim fname
fname=Request.Form("fname")
If fname<>"" Then
Response.Write("Hello " & fname & "!<br />")
Response.Write("How are you today?")
End If
%>
</body>
</html>


and the ipad is not reading in the form variables is this a known issue and how can i fix it ?
 
Last edited:
Found the issue

The issue is ISA server blocking the form post variables, very annoying. take the ipads out of the proxy no issues. We have enabled annoymous access via ISA but its still not playing ball.

Ipads in a work environment through a proxy = Issues everywhere.
 
Back
Top Bottom