|
You should use: <fortyfingers:STYLEHELPER AddMetaTags="apple-mobile-web-app-capable:no" runat="server" />
BTW, you can add anything to the head using
AddToHead='<script types="<meta name="apple-mobile-web-app-capable" value ="no" />||<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:regular,bold">'
That way you can inject your external stylesheet too.
Example: <fortyfingers:STYLEHELPER AddToHead='<meta name="apple-mobile-web-app-capable" value ="no" />||<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:regular,bold">' runat="server" />
|