Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
1k views

Does http-equiv=“refresh” keep referrer info and metadata?

Hey guys, I'm posting this here because the Doctype community seems to be sleeping in. If I set up a page like this: <html><head><meta http-equiv="refresh" ...
2
votes
1answer
122 views

Change URL on click of browser refresh button

I have a login.aspx page. There is a validation in another page say FirstPage.aspx once login successful, and if the validation fails,page will be redirected back to "login.aspx?status=false". Then ...
1
vote
3answers
69 views

Difference between f5, CTRL+f5 and click or refresh button

Hello I have often experience while developing my web applications that pressing F5 or doesn't produce or refresh the proper result. But when we hit CTRL+F5 it genrates the correct result. What is ...
1
vote
3answers
106 views

Java code to refresh browser

Whenever a user logs in(into an app which I've been working on), he will be redirected to his home page, which needs to be refreshed one time. I have to write the code in .java file to basically ...
1
vote
0answers
74 views

Does JavaScript reload() stop the remainder of the page from being processed?

In my tests, JavaScript's reload() function seems to prevent code that comes after it from executing... but can anybody confirm that this is true 100% of the time? Assume the user has JavaScript ...
1
vote
1answer
100 views

I need precompile assets every time I've made any change to see difference in browser

Like as I mentioned in title - I have to precompile assets every time I've made any change to see how it looks like - I've tried config.assets.compile = true, without success. I've also tried ...
1
vote
0answers
100 views

Alternative way of Page.IsPostBack

I am into iPhone, Android and Blackberry web programming. I am struck into an issue in which i either need to stop refresh of page (which according to blogs is not possible) or i need to just refresh ...
1
vote
0answers
147 views

some background Images not shown on page refresh (F5)

When I refresh the login page some of the background images are not visible. Sometimes it happens to none, and sometimes to 1, 3 or more. When I click on the link to load the login page or directly ...
1
vote
2answers
412 views

how to make a refresh button using javascript

Can I make a function to refresh the page using JavaScript (same browser refresh button) Thanks
1
vote
2answers
542 views

Differentiate between F5 and browser close event in flex/actionscript

I am using the following piece of code to determine the closure of browser window and it works perfectly. But the issue arises when the user refreshes the page using "F5" or clicking browser refresh ...
1
vote
1answer
140 views

Controlled hyperlink hijaxing

I am working on a web application. I have a data grid with a 'commands' column that has hyperlinks for some common CRUD operations (Edit, Delete, etc). When a user clicks on say the Edit hyperlink, ...
1
vote
1answer
517 views

jquery slider breaks on page refresh

I have a jquery content slider on a site I'm developing. I am having a strange problem that seems to be across all browsers and that is the slider slides the wrong distance if the page is refreshed ...
1
vote
1answer
73 views

What could cause dropdowns to keep their selected values on full page refresh (F5) in Firefox but not IE?

What could cause dropdowns to keep their selected values on full page refresh (F5) in Firefox but not IE?
0
votes
0answers
12 views

How to force execution of transition on browser refresh with spring webflow

Here is the situation: In a page I send data to the backend using ajax. This all works fine, it stores the information in the database as it should and all. Now when I press the refresh button on the ...
0
votes
0answers
20 views

Music Player & Chat In Dot Net Application

I would like to discuss one problem here and seeking for expert opinion from you. I have a DotNet 4.0 application which we are building in WCF and in that application, footer part is very special. In ...
0
votes
0answers
50 views

Force Refresh after Browser Back click

So I think I've checked a hundred different websites, and they all say to do this using some variation of the answer on this page. http://www.4guysfromrolla.com/webtech/111500-1.shtml The problem ...
0
votes
1answer
64 views

How to redirect a page to another page when refresh at second attempt

<script language="JavaScript"> window.onbeforeunload = confirmExit; function confirmExit() { alert("");window.location="index.html"; } </script> Here i tried but not working ...
0
votes
2answers
171 views

asp.net mvc - Detecting page refresh

I understand that are similar question on StackOverflow about this problem, but none of it solved my issue, so i'm creating a new one. As the title says, i'd like to detect when an user refreshs a ...
0
votes
1answer
198 views

Custom master page not refreshing upon deployment in Sharepoint 2010 Foundation

I use VS2010 on Server 2008 R2 with Sharepoint 2010 Foundation. I have created a custom master page following instructions from here: http://msdn.microsoft.com/en-us/library/gg447066.aspx ...
0
votes
0answers
88 views

No browser refresh in IE8 with jsf (newer versions of stored pages checked automatically)

I have the following problem: An application was implemented using JSF for the browser GUI. It works fine under Firefox (at least for versions from 6 to 7) However, when I try it with IE8, the ...
0
votes
1answer
114 views

Silverlight Refresh data

I don't know what is the best way to force a browser refresh when using silverlight. The scenario is like this: We have a silverlight application hosted on IIS Two users opens the same page and ...
0
votes
0answers
64 views

Force refresh of a cached page

We recently changed our logo. The new logo has a new file name. Apparently for some users this isn't enough of a change to cause their browser (almost definitely IE 8 or less) to refresh their cache ...
0
votes
2answers
105 views

How do I make images rotate when the page is refreshed/reloaded?

I have a script that is working fine in DreamWeaver CS5 but when I apply it to my page it will not perform properly nor show. <script language="JavaScript"> <!-- images = new ...
0
votes
0answers
65 views

disable page refresh in firefox without using onunload

wanna disable page refresh in firefox without using onunload. as onunload gets fired in normal case too ie. when things have worked fine and through code i redirect user to other page. thanks in ...
0
votes
0answers
296 views

Automatic reload every minutes only on Firefox 4

I have a question related to the website: www.purimas-lombok.com When opened in Firefox 4, every minutes it reload the page, block a few seconds the page after loaded with a white filter and add a # ...
0
votes
1answer
217 views

JavaScript equivalent of hitting the browser refresh button

I am adding functionality to a legacy web application such that in certain circumstances we will log the user off, returning them to a logon page that is separate to our application. The application ...
0
votes
1answer
98 views

Refresh a page only when the browser is not minimized and the tab is active

Could you tell me how to do a autorefresh (every minute) on a page. But I have some constraints, the refresh occur only when : - the browser is not reduce (minimized) - the tab must be active When ...
0
votes
2answers
170 views

jQuery, Forms, Browser Refreshes

I have a large form with some fields values dependent on previous elements. I use jquery's .trigger event to trigger the dependent field's update functions. When I refresh the page (click reload or ...
-2
votes
1answer
140 views

how can refresh a page remotly in javascript

is there a way to refresh a page remotly from another page in javascript. i want to force the browser to do a refresh when i go back to a page which was displayed before. im doing some code in a page ...