Mobiles :: Web Page Displaying With Small Font In Safari On Ipod Touch

Nov 18, 2010

I had developed mobile web page in asp.net 2.0. This page is displaying with small font in safari on ipod touch and in iphone. for this i had copied iphone.browser definition file in

C:WINDOWSMicrosoft.NETFrameworkv2.0.50727CONFIGBrowsers

folder and run the command aspnet_regbrowsers.exe -i in command prompt. Then 2 files with ASP.BrowserCapsFactory.dll and BrowserCapsFactory.cs are created. But there is no result.

View 3 Replies


Similar Messages:

Mobiles :: Working On A Mobile Ecommerce Store, But Looks Crap On Iphone Or Ipod Touch?

Jan 27, 2010

I remeber a looong Time ago i saw a video that showed:

Some one using a mobile tags, and asp.net would see what for device it would render it for specific device.

I'm working on a mobile ecommerce store, but looks crap on Iphone or ipod touch.

View 2 Replies

Is It Possible To Force Iphone/ipod To Update Apple-touch-icon Once Webapp Is Added To Home Screen

Jan 3, 2011

I have created a webapp using all of the recommended link and meta tags for safari, eg.

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-startup-image" href="/startup.png" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-ipad.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-iphone4.png" />

However, my issue is if the startup.png or any of the apple-touch-icon image files are updated on the webserver, it doesn't seem like a user's iphone or ipod will retreive the updated file once it has been saved to their home screen (I'm guessing it's cached somehow or something). It works to remove the webapp from the home screen and re-add it. But is there a way to let the application know it needs to refresh these images without requiring the user to delete and re-add it?

View 1 Replies

Visual Studio :: Font In IDE Is Reduced When Dragging Finger Across Touch Pad?

Dec 2, 2010

I don't know if this is a problem with my new Toshiba Laptop, or the VS 2010 IDE. Sometimes when dragging my finger across the laptop touch pad, the text in the IDE will be reduced to a really small font. This is so aggravating as I do not know why this happens or how to fix it. what is causing the problem and how to fix it?

View 2 Replies

Myriad Pro Font Does Not Appear On Safari?

Jun 28, 2010

I have an asp.net page with an asp.net menu.

I defined the font in the menu items to be Myriad Pro.

In IE and Firefox it appears normally, but in Safari the menu items appear blank.

when I changed the font type to another font it worked fine.

so is there a way to make the Myriad Pro font appear on Safari.

View 4 Replies

Clickable Areas Are Very Small On Firefox Safari Chrome?

Jun 6, 2012

Tab buttons and links are little hard to click on  Firefox, Safari, Chrome. hover areas are as small as clickable area,They work perfecly well on IE

I have link for LOG IN normally(on IE) hover works and pointer changes to hand when mouse gets appoximitly one pixel range and it is clickable.

But in other browsers event  LOG IN--- link works only when mause gets halfway over text(you can take dashes as referance upper part of the dash works good but buttom part is not  clickable )

View 1 Replies

AJAX :: Text In TabConainer Tab Is Printing In Very Small Font?

Jan 19, 2011

I'm using vs2008, asp.net, C#, .net 3.5, Asp.net AjaxControlToolkit.dll 3.0.20229.0

1. is this the newest version that can run on vs2008 with .net 3.5?
2. I have a web page that uses ajax tabcontainer control. All the text starting from "<b>ABOUT OUR LEADERSHIP</b><br /><br />" shows up very small in the print preview. I played witht he percentage, setting the Full Wid View optino and 60% in Portrait would give me the best layout but the text is very small either in preview or in the print out.
3.There is a background img in this page so i change the setting in preview to print out the background image.

4. The most noticable when first in print preview is that the tabcontainer shrinks down to about 40% of its orignial size protion on the web page in the "View Full Page" option. When I selects the "View Full Width" it then streches out to about 80% in width but all text on this page is still small.

5. There is about 1inch on left and right and 2-3 inches of dark blue background. the page should occupied this whole page. If I check not to print background and img then the img won't show but those blank spaces are still there but it's just now white instead of dark blure.

6. In print preview when first show up it's set for 100% and it's completely useless. It breaks the web page to 2 pages. The first page shows about 2-3 inches of content and the rest of the page is just blank

View 3 Replies

Controls :: Receiving Font Size Too Small 0 Error While Using ITextsharp

Jul 18, 2012

I am having an aspx page with controls as textbox ,tables ,checkbox etc .I need to convert the webpage to pdf file by a button click .I am using Itextsharp in it. when the button click event fires it shows the error as  Font size too small: 0 near htmlparser.Parse(sr);  

So how to rectify it .the code used for button click is :

protected void Button1_Click(object sender, EventArgs e) {
Response.ContentType =
"application/pdf";
Response.AddHeader(
"content-disposition", "attachment;filename=TestPage.pdf");

[Code] ....

View 1 Replies

Mobiles :: IPhone Safari And The Viewport Tag?

Sep 28, 2010

I'm putting this tag at the header of my HTML pages, trying to get the page to stop vertical scrolling on mobile browsers like iPhone Safari:

View 2 Replies

Mobiles :: ModalPopup Extender And Safari?

Jul 15, 2010

Does anybody have experience using ModalPopup extender in iPhone/Safari? I added a ModalPopup and when I click on the button it does not run my server side code. I am sure that I did everything correctly and the same code works just fine in IE and Chrome. Here is a chunk of the code:

[Code]....

andProtected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click

View 1 Replies

Mobiles :: AJAX DragPanelExtender And Safari/iPhone?

Sep 17, 2010

Is DragPanelExtender not working in Safari/iPhone? Same page works just fine in other browsers but not on iPhone.

View 1 Replies

Mobiles :: View Binary Image With Safari In IPad/IPhone?

Oct 8, 2010

Not sure if this issue should be posed here, but i try anyway:I have a webpage with a button, button click the webpage will write an image (in binary) to the response object, resulting the user can open or save an image.

Code:
response.ClearHeaders();
response.ClearContent();
response.AddHeader("Content-Disposition", "attachment; filename=abc.jpg");
response.AddHeader("Content-Length", binaryImageFile.Length.ToString());
response.BinaryWrite(binaryImageFile);
response.Flush();
response.Close();

Everything is fine in IE in Windows, but in Safari in IPad/IPhone, it is viewed in a seperate browser tab, with the binary image file written as a very long string.In Windows, i know you have to select a program to use to open a new file type for the first time, is this the case in IPad? that i need to select a program?

View 1 Replies

Mobiles :: Checkbox Checked And Button Click Not Firing In IPhone Safari?

Feb 7, 2011

I have an application that works perfect in IE and FF but when opened in iPhone Safari the checkbox checked and button onclick functions do not fire. I have looked all over the web for the last few days and could not find a solution to this very frustrating problem. I hope someone has encountered this before and knows of a fix.

View 5 Replies

Web Forms :: Masterpage Not Displaying Properly In IE Compatibility View Or Safari

Apr 12, 2010

I am building a website that isnt displaying properly accros browsers. It displays fine in FireFox and IE but does not display correctly in IE compatibility view or Safari. The problem is that I have a background header image that is different on the left and right so I cant do a repeat and center the content div. I was able to acheif the effect by building a table with three columns. But on safari, the backround of the outside columns does not show because there is no content in those columns. In IE compatibiliy mode, the columns disappear and the center column is shifted to the left. Anyone have any ideas? HEre is my code.

<body>
<form id="form1" runat="server">
<table cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="background-image: url(Images/MasterPage/BKGbodyLeft.png); background-repeat: repeat-x;
background-position: left top">
</td>
<td style="width: 1020px">
<div>
<div id="Header">
</div>
<div id="Content" style="padding-top: 20px; height: 630px">
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
<div id="Footer">
</div>
</div>
</td>
<td style="background-image: url(Images/MasterPage/BKGbodyRight.png); background-repeat: repeat-x;
background-position: left top">
</td>
</tr>
</table>
</form>
</body>

View 1 Replies

State Management :: ViewState Data Displaying In Safari Browser?

Jan 4, 2011

I have an application where ViewState is set to "true". In some pages, I can see the viewstate value at the top of the page (just below the addressbar). But this only happens in Safari browser. And when this is shown, clicking on any button in that page, it is going to some error page. In Mozilla, IE7/8, Opera it is running properly !

View 3 Replies

Mobiles :: List Not Displaying Information - Inserted Label

Apr 20, 2010

I am using mobile list control inside that i inserted a label when i bind any dataset to that list it is not displaying any information. In msdn it is mentioned the mobile list control is equivalent of web control is datalist. The code as follows.

<mobile:List Runat="server" ID="List2">
<Item>
<mobile:Label runat="server" id="lblStudentName" Text='<% #Eval("StudentName") %>'>
</mobile:Label>
</Item>
</mobile:List>

in code behind

protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
MTestDataContext dc = new MTestDataContext();
List2.DataSource = dc.Students;
List2.DataBind();
}
}

View 2 Replies

AJAX :: How To Change The Font And Font Size Of The Data In The Dropdown Of A Combobox

Jan 6, 2010

Is it possible to change the font and font size of the data in the dropdown of a Combobox?

I've tried;

.CustomComboBoxStyle .ajax__combobox_itemlist li {
width: 150px;
font-family:Verdana;
font-size:smaller;
}

and setting the CssClass to it, but doesn't affect the font. I can adjust the width of the dropdown object, but I need to change that gawd awful font.

View 7 Replies

Web Forms :: Change CSS Font Size And Make Font Bold In DropDownList

Aug 9, 2012

I use this class for my DropDownList

  .DPCDDL {
float:left;
width:200px;
height:20px;
margin-top:1px;
font:bold 12px Tahoma;
}

In my dropdownlist just selected item font be (bold 12px)

I want that all item that are in my dropdownlist font be bold 12px  how i can do it?

View 1 Replies

SQL Reporting :: SSRS 2008 - Font And Font Size Changing?

Jun 24, 2010

Just upgraded from SSRS 2005 to 2008 (on a test server). I have a report with a list and in this list are about a dozen fields in textboxes whose fonts are all set to Verdana 8pt. When I run the report from the Report Manager, one of the 12 fields is displaying in a serif font (like Times New Roman) at around 12pt. When I preview the report in Visual Studio every field looks fine and when I run the same report in SSRS 2005 every field looks fine. Has to be a SSRS 2008 bug!

View 3 Replies

How To Use Font.names Property For A Single Label As Font.name Is Already There

Feb 2, 2011

there is two properties under font area for web control What is use of Names as Name set the value of font.

View 2 Replies

Getting Font Metrics From A True Type Font In C#?

May 11, 2010

point me to information regarding getting font metrics from a true type font in C#? I need to split some text from an RSS feed for a given box height and width.

I've checked System.Drawing.Font and GetHeight is there but how do I get the width of a character?

I understand each character is rendered as a glyph but not sure which class will get the width of the character?

View 2 Replies

Unable To Force A Page To Always Expire In Safari

Aug 2, 2010

I'm unable to force a page to always expire in Safari. Chrome, IE and Firefox are good citizens but Safari is cruising along just fine with ignoring the following ASP.NET code:

// Expire immediately
Response.Expires = 0;
Response.Cache.SetNoStore();
Response.AppendHeader("Pragma", "no-cache");

View 1 Replies

Way To Display A Grid In A Small Page Instead Of Window

Jan 28, 2011

I have a .aspx page (it is a content form). When I click on a button on that page, I want to invoke another .aspx page in a small window. I want to display a grid in that small .aspx page.

View 4 Replies

AJAX :: Use One Big UpdatePanel / Few Small UpdatePanels On Same Page?

Jun 10, 2010

I am having now two UpdatePanels on the same content page. One is a big UpdatePanel and another is a very small one. I can insert the little one content to the big one, but it means some info I don't need to update with Ajax at all will be init two, because of UI issues. What is better for performance? One big UpdatePanel or a small ones?

View 5 Replies

Get A Blank Page Appearing With No Content Using Chrome, Safari

Jul 5, 2010

I'm having problems using an IHttpHandler on PDF files.

I'm redirecting "*.pdf" in <httpHandlers> of web.config to a IHttpHandler class that blocks access unless the user is authenticated.

Code:

<add verb="*" path="*.pdf" type="Handler.Class, Handler.Dll.Name" />

I have no problems accessing any PDF file from firefox while authenticated, but when accessing using any other browser (chrome/safari/opera) I only get a blank page appearing with no content. Accessing the PDF files from other computers gets the same result (blank page) including firefox on other computers.

Contents of the IHttpHandler:

C# Code:

[code]....

View 30 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved