I'm certain you can't remove a doctype and have it work
correctly.   .aspx should have nothing whatsoever to do with it, that
is server parsed, not parsed through the browser or andriod.

You need to have the right doctype and other associated items for a
web page to display properly.  Just because it works on Chrome does
not mean it's correct.  Try your page at the html validation services
at w3c.com   Browsers will put up with really crappy code and Andriod
might be more picky.

Sample skeleton:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml";>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
</body>
</html>


On Jun 27, 10:54 am, m <phillip...@gmail.com> wrote:
> I'll put it in some internet space so you can test for yourself.
>
> On Jun 27, 7:48 am, Chad Killingsworth
>
>
>
> <chadkillingswo...@missouristate.edu> wrote:
> > No it's not a joke. Rossko was simply stating that loading the file
> > locally, the browser depends on the file extension to determine the
> > correct content type. The default for unknown file extensions sounds
> > like it is "text/plain" which means you would see all the code.
> > However I didn't think you were loading the code locally - but content
> > type may still be the answer.
>
> > At this point we're at the end of the guessing stage and I quote the
> > posting guidelines:
> > Where's the link to your map?
>
> > I happen to have a couple of Android phones and a friend has a Nexus
> > One. I could take a look if you could post the url of your page.
>
> > Chad Killingsworth
>
> > On Jun 26, 7:10 pm, m <phillip...@gmail.com> wrote:
>
> > > I can't tell if this is a joke or not...
>
> > > On Jun 26, 6:41 pm, Rossko <ros...@culzean.clara.co.uk> wrote:
>
> > > > I'm not sure why you'd expect it to work, really.
> > > > Guessing Android sees the .aspx suffix for a local file and thinks
> > > > "aha, we need to process this as ASP.  I don't have server type
> > > > resources to do such things, give up."
> > > > Be all the same if it were .XXX, won't know what to do with it.- Hide 
> > > > quoted text -
>
> - Show quoted text -

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To post to this group, send email to google-maps-js-api...@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to