Search Results
Search found 16172 results on 647 pages for 'browser history'.
Page 137/647 | < Previous Page | 133 134 135 136 137 138 139 140 141 142 143 144 | Next Page >
-
-
How to open multiple browser windows on request? (PHP)
- by Ole Jak
So I have a form on PHP/HTML page. User submitss it to that same PHP/HTML page. So now PHP page I will have $_POST data. I want to when page is refreshed opnt some popUp browser windows which url's will be relative to users POST request. like www.example.com/bal-bla-bla.php? id=$_POST['StreamId']Read the article
-
(PHP) how to destroy or unset session when user close the browser without clicking on logout?
- by Piyush
I am destroying all session var in logout.php and calling it when user click on logout, what is user does not click on logout.php but directly close the browser. how can i delete session then???Read the article
-
How do i get client details in ASP.NET ie. browser, resolution and OS ?
- by eugeneK
I need to get client stats for browser (not full long description but short names, generally firefox,ie6,ie7,ie8,safari,chrome,opera and mozilla). Client resolution and OS ie. Windows Vista, Ubuntu .... thanksRead the article
-
How can I ignore an http request without clearing the browser?
- by Timid Developer
To prevent duplicate requests (i.e. pressing F5 right after clicking a command button), I've setup my page base class to ignore the request if it's detected as a duplicate. When I say 'ignore' I mean Response.End() Now I thought I've seen this work before, where there's an issue, I just Response.End() and the users page just does nothing. I don't know the exact circumstance in which this worked, but I'm unable to repeat it now. Now when I call Response.End(), I just get an empty browser. More specifically, I get this html. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=utf-8"></HEAD> <BODY></BODY></HTML> I setup the following test app to confirm the problem is not elsewhere in my app. Here it is: Add the following to an aspx form <asp:Label ID="lbl" Text="0" runat="server" /><br /> <asp:Button ID="btnAdd1" Text="Add 1" runat="server" /><br /> <asp:Button ID="btnAdd2" Text="Add 2" runat="server" /><br /> <asp:Button ID="btnAdd3" Text="Add 3" runat="server" /><br /> And here's the code behind file using System; namespace TestDupRequestCancellation { public partial class _Default : System.Web.UI.Page { protected void Page_Init(object sender, EventArgs e) { btnAdd1.Click += btnAdd1_Click; btnAdd2.Click += btnAdd2_Click; btnAdd3.Click += btnAdd3_Click; } protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) CurrentValue = 0; else if (Int32.Parse(lbl.Text) != CurrentValue) Response.End(); } protected void Page_PreRender(object sender, EventArgs e) { lbl.Text = CurrentValue.ToString(); } protected int CurrentValue { get { return Int32.Parse(Session["CurrentValue"].ToString()); } set { Session["CurrentValue"] = value.ToString(); } } void btnAdd3_Click(object sender, EventArgs e) { CurrentValue += 3; } void btnAdd2_Click(object sender, EventArgs e) { CurrentValue += 2; } void btnAdd1_Click(object sender, EventArgs e) { CurrentValue += 1; } } } When you load the page, clicking any button does what is expected, but if you press F5 at any time after pressing one of the buttons, it will detect it as a duplicate request and call Response.End() which promptly ends the task. Which leaves the user with an empty browser. Is there anyway to leave the user with the page as it was, so they can just click a button? Also; please note that this code is the simplest code I could come up with to demonstrate my problem. It's not meant to demonstrate how to check for dup requests.Read the article
-
A browser half way between Lynx and modern browsers.
- by Majid
Hi, I am looking for a simplistic browser with and without the following capabilities: No Javascript / Java / Flash No Image rendering (and ignoring image-related CSS) Supporting CSS Supporting cookies Supporting forms, anchors, and other HTML elements Supporting GET / POST, and POST with enctype="multipart/form-data" In fact I am looking for a GUI Lynx or something similar. Do you know anything resembling this? Thanks.Read the article
-
How to get filepath of selected hyperlink in android web browser?
- by Addy
Hi All. In my android application I want to get the file path of the hyper link text, selected from webpage in my android web browser. How can I get it?Read the article
-
What are cons if we use javascript to apply css property to that browser who do not support that pro
- by metal-gear-solid
What are cons if we use JavaScript to apply only CSS property to that browser who do not support that property by default? to keep my HTML semantic and keep free from Deprecated HTML. Is it against content, style and Behavior separation? How much it will effect to site accessibility, usability? What are cons? If I make accessible site then should i only use whatever i can do with pure css. shouldn't use JavaScript to apply CSS propertiesRead the article
-
Can I migrate session data from one browser to another? - Web Development
- by RadiantHex
Hi folks, I need to transfer a user to a page which requires session data which is stored within a different session. Is it possible in some cases to migrate the session data by setting the session cookie on the user's browser? Currently I have no workaround, and using session data seems like the only option I have at the moment. Any ideas?Read the article
-
Persist UIWebView content and address after changing views
- by Momeks
I am using UIWebView as a web browser on my application and when I open an url with my browser and return back to the main view, then go to browser view, my webview doesn't save the content. So, if I go to google.com and switch views, then again go to the browser view, I have to type the url again to open the webpage! How can I save the web browser's content?Read the article
-
How to show a message only if cookies are disabled in browser?
- by jitendra
How to show a message only if cookies are disabled in browser? like http://stackoverflow.com show if JavaScript is disabled.Read the article
-
Is it necessary to look, website same in all browser?
- by metal-gear-solid
Is it necessary to look, website same in all browser? are some client mad? isn't it need of pixel perfection ( to inch to inch match with Design) a madness? isn't it asking IE6 Pixel perfection, as of now, is a madness? Is it sin to to use JavaScript for visual enhancement, like to enable border radius in IE using Javascript and from CSS in other browsers?Read the article
-
Cocoa Browser Air missing iPhone docs. Can't find xcode DocSets?
- by Mike Howard
I installed Cocoa Browser Air at home from the same installation file (for 2.4.1) that works fine at work. Its info for Mac OS X 10.6 looks OK, but there's nothing under either iPhone 3.1 or 3.2. I've installed the appropriate Documentation Sets in Xcode Preferences-Documentation, and I have an iPhone SDK, which is required to refer to iPhone DocSets. I'm using the Xcode version 3.2.2. Thanks.Read the article
-
Why isnt the browser asking to remember the password?
- by MILESMIBALERR
What do you need to do on a login form so that the browser prompts to remember the login information? I have a input named "username" and one named "password". ThanksRead the article
-
How to create a simple browser-based IRC client?
- by WoppyCold
I want to implement a chat service on my site, and wonder how to create a simple browser-based IRC client? I have a linux box and can install whatever I want on it. Google finds tutors on how to setup an IRC server but no instructions on how to create an IRC client. (As client languages, I can use JavaScript or Flash.)Read the article
-
How do I setup Hudson on a windows server so I can access it access it in any web browser?
- by MikeU
Question I setup Hudson CI on a Windows 2008 server and now I want to be able to use the domain name to access it from any web browser. Right now I can only access it by using http://localhost:8080. How do I configure it to be public accessible?Read the article
-
Detect if HTTP request is from browser / Flex asynchronous request?
- by Andree
Hi there! When Flex application make an asynchronus HTTP request, does it add a special header to the request, like some JavaScript framework does? Something that indicates whether this request is an AJAX call/not. I just want my server side code to return different response format, depending on whether the request is made from browser/flex. Regards, Andree.Read the article
-
How to make WebKit or IE call your application (.NET) from HTML page opened in browser?
- by Ole Jak
I have a .NET application running on windows. I want clicking on some page element (button link flash app etc) to lunch my app with some special parameters. (It should run not just in IE but on WebKit based windows browsers too) During App install we suppose that user is Admin and is running Vista or Windows 7 or Later. So my question is - Where to get examples of such interaction (WITH source of course)? So how to make WebKit based Browser or IE call your .Net application?Read the article
-
JavaScript - Does the browser keep track of active timer IDs?
- by bobthabuilda
Does the browser keep track of active setInterval and setTimeout IDs? Or is this solely up to the developer to keep track of? If it does keep track of them, is it accessible via the BOM?Read the article
-
what is the best xhtml-css editor with emmbeded browser (under GPL) in your opinion?
- by alsadk
what is the best xhtml-css editor with emmbeded browser (under GPL) in your opinion? note: must be work under linux os.Read the article
-
Best way to play wav files in the browser?
- by Splatzone
I have no choice but to play wav files directly in the browser (serverside encoding to mp3 isn't an option, unfortunately.) What's the best way to do this? I'd really like to take advantage of the HTML 5 audio tag but my target audience includes many, many teens using IE6. As far as I'm aware flash isn't an option, but speedy playback really is critical. Thanks.Read the article
-
How do you run a long PHP script and keep sending updates to the browser via HTTP?
- by Jeremy Rudd
How do you run a long PHP script and keep sending updates to the browser via HTTP? Something to do with output buffering but I don't know exactly how.Read the article
-
ASP.NET MVC Route based on Web Browser/Device (e.g. iPhone)
- by Alex
Is it possible, from within ASP.NET MVC, to route to different controllers or actions based on the accessing device/browser? I'm thinking of setting up alternative actions and views for some parts of my website in case it is accessed from the iPhone, to optimize display and functionality of it. I don't want to create a completely separate project for the iPhone though as the majority of the site is fine on any device. Any idea on how to do this?Read the article
-
How to reliably categorize HTTP sessions in proxy to corresponding browser' windows/tabs user is viewing?
- by Jehonathan
I was using the Fiddler core .Net library as a local proxy to record the user activity in web. However I ended up with a problem which seems dirty to solve. I have a web browser say Google Chrome, and the user opened like 10 different tabs each with different web URLs. The problem is that the proxy records all the HTTP session initiated by each pages separately, causing me to figure out using my intelligence the tab which the corresponding HTTP session belonged to. I understand that this is because of the stateless nature of HTTP protocol. However I am just wondering is there an easy way to do this? I ended up with below c# code for that in Fiddler. Still its not a reliable solution due to the heuristics. This is a modification of the sample project bundled with Fiddler core for .NET 4. Basically what it does is filtering HTTP sessions initiated in last few seconds to find the first request or switching to another page made by the same tab in browser. It almost works, but not seems to be a universal solution. Fiddler.FiddlerApplication.AfterSessionComplete += delegate(Fiddler.Session oS) { //exclude other HTTP methods if (oS.oRequest.headers.HTTPMethod == "GET" || oS.oRequest.headers.HTTPMethod == "POST") //exclude other HTTP Status codes if (oS.oResponse.headers.HTTPResponseStatus == "200 OK" || oS.oResponse.headers.HTTPResponseStatus == "304 Not Modified") { //exclude other MIME responses (allow only text/html) var accept = oS.oRequest.headers.FindAll("Accept"); if (accept != null) { if(accept.Count>0) if (accept[0].Value.Contains("text/html")) { //exclude AJAX if (!oS.oRequest.headers.Exists("X-Requested-With")) { //find the referer for this request var referer = oS.oRequest.headers.FindAll("Referer"); //if no referer then assume this as a new request and display the same if(referer!=null) { //if no referer then assume this as a new request and display the same if (referer.Count > 0) { //lock the sessions Monitor.Enter(oAllSessions); //filter further using the response if (oS.oResponse.MIMEType == string.Empty || oS.oResponse.MIMEType == "text/html") //get all previous sessions with the same process ID this session request if(oAllSessions.FindAll(a=>a.LocalProcessID == oS.LocalProcessID) //get all previous sessions within last second (assuming the new tab opened initiated multiple sessions other than parent) .FindAll(z => (z.Timers.ClientBeginRequest > oS.Timers.ClientBeginRequest.AddSeconds(-1))) //get all previous sessions that belongs to the same port of the current session .FindAll(b=>b.port == oS.port ).FindAll(c=>c.clientIP ==oS.clientIP) //get all previus sessions with the same referrer URL of the current session .FindAll(y => referer[0].Value.Equals(y.fullUrl)) //get all previous sessions with the same host name of the current session .FindAll(m=>m.hostname==oS.hostname).Count==0 ) //if count ==0 that means this is the parent request Console.WriteLine(oS.fullUrl); //unlock sessions Monitor.Exit(oAllSessions); } else Console.WriteLine(oS.fullUrl); } else Console.WriteLine(oS.fullUrl); Console.WriteLine(); } } } } };Read the article
-
How to know if the scrollbars has appeared in browser (jQuery)?
- by snitko
I need to know, whether a vertical scrollbar has appeared or not in browser window. Is it possible using jQuery or any other way?Read the article