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:
Assuming 'test.asp' is the correct target I can see nothing obvious with your ASP.

Things to try:
- Try using trim(request.form("fName"))
- Your doctype is for HTML5 and you've not set 'id' attributes for your form or form entities.
- You've not got a <head> tag.

Safari may be less forgiving.

Clutches at straws.
 
what are you getting when you submit the form? The form variables are read on server side so it's not going to be an ipad problem. id suspect its the action of the form that's the issue. if you;re getting a blank page, thats def the case
 
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