Web Forms :: Make Data Controls Full Screen On IPhone Or Other Smartphones?

Sep 3, 2010

Admittedly, I haven't done a lot of development for iPhone or smartphones, in general. This is a conventionally sized asp.net 3.5 website with a subfolder that contains simplified webforms that are supposed to be optimized for smartphone screens, specifically the iPhone. The page giving me the problem contains an AJAX accordion control with three panes. The first pane has a DetailsView with the default mode set to Insert. The second pane has a three column gridview. The last pane has another detailsview that shows the detail of whichever record is selected in the gridview. Pane 1, the gridview, is the default view when the page loads. Everything works fine on the page but when it renders on the iPhone 4, the accordion and the controls are very small, occupying about 1/4 of the screen. Double-tapping the gridview causes the screen to zoom or you can use two fingers to stretch it to the size you want. I would like to find a way to make the page load with the controls already zoomed in to full screen. I have triedstyle="width: 400px;" in the <body> element, the <form> element, and in the <div> element. None of them made a difference.

View 2 Replies


Similar Messages:

How To Make Browser Full Screen On Page Load Using Javascript With Timer Control

Sep 14, 2010

I want a browser to go full screen as soon as my page loads. Is it possible in javascript. I know the shortcut key for this F11 but requirement is on page load only.

After reading the solution provided below. I achieved full screen but here i got a trap. I was using timer to make my page postback to get fresh data after every 5 second. And here I found after every 5 sec new window opens up but I want full screen to go only once and next time content gets refreshed there itself.

View 4 Replies

Controls :: How To Display Full PDF Files In Full Screen On Web Page

May 7, 2015

I use the code, to display the file that I saved in the database.the question is: why the file can not be performed with a full screen.

protected void View(object sender, EventArgs e)
{
int peraturan_id = int.Parse((sender as LinkButton).CommandArgument);
Session["peraturan_id"] = peraturan_id;
ClientScript.RegisterStartupScript(this.GetType(), "open", "window.open('file_view.aspx','_blank' );", true);
}
 
[Code] ....

View 1 Replies

C# - How To Open Screen On Full Screen

Dec 14, 2010

how i can open my asp.net program on full screen (like i press F11)

Through C# code ?

View 4 Replies

Web Forms :: Open A Webpage In Full Screen?

Mar 25, 2011

I want that my web page should open up in full screen. Is there any code that i can put in my page load event so that the browser should set itself to full screen i.e. same as F11.

View 2 Replies

Web Forms :: How To Display Website In Full Screen

May 7, 2015

The moment a user logs in application should get converted in full screen like we get after pressing f11

I am using this javascript function 

<script type="text/javascript">
function goFullscreen(element) {
if (element.mozRequestFullScreen) {
// This is how to go into fullscren mode in Firefox
// Note the "moz" prefix, which is short for Mozilla.
element.mozRequestFullScreen();

[Code] ....

it is not working on load event of page.

View 1 Replies

Web Forms :: Display Full Screen Browser

Jul 17, 2015

how to make Browser Full Screen ( like press F11 ) using Javascript

View 1 Replies

Data Controls :: How To Make LinkButton In GridView Within UpdatePanel Do Full PostBack

Nov 6, 2013

i had a gridview, inside that i had a download imagebutton, on clicking this button i need to download the file.

and this gridview is inside update panel. i think trigger to be used but i used both postbacktrigger and asynchronus postback trigger. but it is not triggering the button instead it is giving error.

View 1 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

Full Screen Doesn't Exist For End User?

Dec 30, 2010

I am creating a project in which i want to display my web page in full screen & Does not allow the end user to ext the full screen until he/she press the button. I google/bing but i dint get any help full material. Even i use this code

[Code]....

View 17 Replies

MVC :: How To Get Full Screen Effect Using Video Helper

Jan 29, 2011

Using Microsoft.Web.Helpers package, I was able to create a kind of "Youtube" of my own. A very small application running in our local network where people can upload, watch, and comment on video uploaded, etc...). Unfortunately, there are some missing features to the screen I'm able to obtain using those helpers. There are particularly 2 features that I can thing of: If the user doesn't move the mouse for a few seconds, the menu and the mouse disappear. They appear again when the mouse is moved the Full screen option. How can I get those effects using the video helpers?

View 3 Replies

C# - Acrobat Opening In Full Screen Mode?

Jan 27, 2010

I am having an issue with displaying a PDF in an iframe in asp.net. When the pdf shows up it is showing up without the Acrobat toolbar that allows the user to zoom and print. This is causing a major hassle for our customers because they cannot read the PDF in the size that it is. If you try and set Acrobat to not show the PDF in the browser and browse to that page you get a message saying that it is trying to open it in Full Screen mode. how I can make it not do this from the code? Below is the code I use to stream the PDF to the browser:

Public Shared Sub StreamPdfToBrowser(ByVal doc As Document)
Dim Ctx As HttpContext = HttpContext.Current
'// Clear any part of this page that might have already been buffered for output.
Ctx.Response.Clear()
Ctx.Response.ClearHeaders()
'// Tell the browser this is a PDF document so it will use an appropriate viewer.
Ctx.Response.ContentType = doc.DisplayFileType
Ctx.Response.ContentType = "application/pdf"
Ctx.Response.AddHeader("content-type", "application/pdf")
'// IE & Acrobat seam to require "content-disposition" header being in the response. If you don't add it, the doc still works most of the time, but not always.
'// this makes a new window appear:
Response.AddHeader("content-disposition","attachment[inline]; filename=MyPDF.PDF");
Ctx.Response.AddHeader("Content-Length", doc.DisplayFile.Length)
Ctx.Response.AddHeader("Content-Disposition", "inline; filename=E-Sign Specification Report.pdf")
'// TODO: Added by KN to possibly fix UA issue
Ctx.Response.ContentType = "application/pdf"
Ctx.Response.AddHeader("content-type", "application/pdf")
'// Write the PDF stream out
Ctx.Response.BinaryWrite(doc.DisplayFile)
'// Send all buffered content to the client
Ctx.Response.End()

End Sub

View 1 Replies

Javascript To Open A Web Page In Full Screen After Logging?

Feb 24, 2011

I have one login.aspx page one master page(Master.master). When I click on login button, my web page should view in full screen mode.This should happens automatically when user credentials are correct.Master page should open in full screen mode.

I don't want it in new window(pop up window). I don't want to ask user press F11.It should work

in all browsers.(mainly in firefox and Internet Explorer)

I tried with below codes. But it is not working fine. correct my code or new code.

<script language="javascript">
function fullscreen()
{
window.open('page.php','kyscorp','width='+screen.width+',height='+screen.height+',top=0,left=0');
}
</script>

I wrote in Master.master aspx page.

View 1 Replies

How To Disable Double Click In Flowplayer 3 In Full Screen Mode

Jun 16, 2010

How to disable double click in flowplayer 3 in full screen mode?

View 1 Replies

MVC :: Make Multiple Clients (desktop And IPhone)

Feb 4, 2010

How can I make multiple Index pages (contains a list of data), one to be used for a regular client, and one special view for the iPhone. Based on the article found on http://dotnetslackers.com/articles/aspnet/DevelopingForTheiPhone.aspx , I know that I can distinguish using

[Code]....

View 1 Replies

C# - How To Show A Web Page In Full Screen Mode Without Statusbar And Addressbar In All Browsers

Nov 28, 2010

How to show a web page in full screen mode without statusbar and addressbar in all browsers and it should not show the taskbar also.

View 5 Replies

How To Make The Gridview Columns NOT To Expand And If The Data Needs To Show In Full

Feb 25, 2011

So i'm currently designing a site ( ) and i've made my skeleton master page.What i've noticed is that the gridview must be cut down a little to fit my 1024x768 design.

Now i have taken a note in the past to look at this but i couldn't find the time so i guess the time is now.
What i have problem with is shrinking the columns.If i have a name, say "jack R" and i make a gridview column,say width 15 then the name is included and all is ok.However if i have another name,say "jack the 3rd" then the column will expand to fill the name.So all the grid will expand to the right.I have tried in the past some stuff but it seems that if a value is longer than the column then i expands whatever i do.Also i was surprised to see that only the dates will not expand and go "down" instead of right.At least in the gridview i have.

So the 2 questions.How do i make the gridview columns NOT to expand and if the data needs to show in full then how do i make the data go DOWN and not expand right.I have no problem of the grid expanding downwards but i have a problem of the grid expanding to the right.

View 6 Replies

Web Forms :: How To Use Vb Codebehind To Open In "full Screen" Mode

Sep 8, 2010

I can create an ActiveX control to active F11 to enable full screen mode, but would rather not. Is there an easier way?

View 3 Replies

Web Forms :: Toggle Full Screen Feature In Free Text Box Rich Text Control On Aspx Page

Jan 25, 2011

I am using FTB on my aspx page. is there any way I can have Toggle Full screen feature in FTB, is this feature availble in FTB? it is available on TinyMCE, but I don't want to switch to TinyMCE since I am already using FTB in most of the pages in my application.

View 1 Replies

Web Forms :: Use The Master Page To Make A Full Border To The Site

Oct 21, 2010

I want to ask can I use the master page to make a full border to the site for example: [URL] and then put the content inside that, or I just only can use master pages to do headers and footers?

View 4 Replies

Web Development - Finding Web App For Smartphones In ASPX

Jun 9, 2010

I have been looking around recently to try and find a good place to learn how to start making my website more smartphone friendly when it is visited by an iPhone, android, or blackberry. This is something like what [URL] does when it is visited by a smartphone. I have found a few tutorials for PHP but none for ASPX, and all I have is windows servers.

Could anyone point me in the right direction, and show me were to find a quick run through on how to do something like this? I am a bit lost.

View 1 Replies

AJAX :: Display The "UpdateProgress" In Full Screen?

Sep 18, 2010

Is it possible to display the "UpdateProgress" in full screen?

View 2 Replies

SQL Reporting :: Reportviewer 2010 Is Coming With Blank Screen / Data Exists On The Page But Not Showing On The Screen

Mar 24, 2011

I have upgraded web application from VS.2008 to vs 2010. I was using previously ReportViewer 2008 control in a page and replaced with 2010 ReportViewer Control.

I have installed the ReportViewer Redistributable also in my local pc as well as in the server. Also as per the new requirement I have placed the Scriptmanager in the web page where the reportviewer control located.

While running the page, the reportviewer run the report and is not showing the data on the screen. It shows the blank screen. But If I export the data to execl or world it is showing the data. Also the page numbers in the reportviewer showing the total pages available in the navigation bar. I am sure the report is running and bringing the data to the screen but not showing it.

View 1 Replies

Make Footer Stay On Bottom If Content Does Not Fill Screen

May 8, 2012

Note.Using this on master page.Ok.After trying for hours i cannot get it to work.I need the footer to stay on the bottom of the screen.This is exactly what i want but i does not work(footer stays where content ends). URL....
My page structure is this:

Code:
html,body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
font-size: small;
margin: 0;
padding: 0;
color: #000;

[code]...

View 3 Replies

Php - Make Server Side Form Validation Compatible With Screen Reader?

Feb 23, 2010

if screen reader fill any content wrong then how to give info (if javascript is disabled) to user to go that field any fill the correct value. with jvascript we can show javascript alert but if js is disabled then? I need solution for asp.net 20 and PHP both.

View 1 Replies







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