I developed Asp.NET website few months ago. I hosted it on some server and used free alias for website address. Alias uses iframe in which website content is shown. Example:my site original address mysite.myhost.address.com, and alias address looks like this mysite.alias.com, and here is the code of an alias page that contains my original site:\[code\]<!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" xml:lang="pl"><head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" /> <meta name="robots" content="all" /> <meta name="description" content="" /> <meta name="author" content="" /> <meta name="keywords" content="" /> <link rel="Shortcut icon" href="" /> <style type="text/css"> html { margin: 0px; padding: 0px; overflow: hidden; width: 100%; height: 100%; } body { margin: 0px; padding: 0px; overflow: hidden; width: 100%; height: 100%; }</style></head><body><iframe style="position:absolute; top:0px; left:0px;" src="http://stackoverflow.com/questions/12608474/mysite.myhost.address.com" width="100%" height="100%" frameborder="0" scrolling="auto" name=""></iframe><noframes> <div style="text-align: center;"> no frames </div></noframes></body></html>\[/code\]The problem is with links generated from aspx page (they triggers postback using javascript) - on android devices any of such link does not work if page is displayed in iframe. If I go in android browser directly to my original web site address everything works fine. Is there any solution for this? Obviously I can't change any attributes of iframe page. I can change only my original website...