0
votes
2answers
15 views
Prevent Iframe reloading on post back
Hi all,
I have a webpage with one iframe and a button.
On Page Load event,
if (!Page.IsPostBack)
{
string sDocUrl = //some doucmen url
Iframe1.Attributes["src"] = sDocUrl;
}
Wh …
1
vote
2answers
24 views
ObjectContext.Refresh() ???
How to update ALL the dirty entities from the data store, and reset their changed values to the original store value?
The method ObjectContext.Refresh requires as a parameter the …
1
vote
3answers
47 views
javascript reload
Is it possible to use javascript:location.reload(true) as a action= for a form without having the browser say "In order to reload this page, information must be resent" or somethin …
0
votes
1answer
34 views
jQuery galleria plugin with dynamically loaded images
I'm using the Galleria plugin with jQuery to create my image gallery. I'm trying to get load images dynamically from the user's selection into the DOM and have the gallery auto-upd …
2
votes
4answers
2k views
How do I reload a page without a POSTDATA warning in Javascript?
I want to reload a page using:
window.location.reload(true);
But I receive the POSTDATA warning because the refresh function want to resend previous POST form data. How can I re …
0
votes
1answer
23 views
UITableView selection hightlighted even after tableView reloadData
I am new to iPhone SDK.
I have a UIScrollView and a UITableView on it. The UITableView has 4 cells. I use UIPageControl for pagination.
When user selects, the cell gets highlight …
0
votes
1answer
72 views
Web pages that a long time to load keep on reloading, just on vista on my work n/w…
I have a curious problem at work which I've been struggling with since the advent of Windows Vista.
We send our own email newsletter out to 40,000+ people once a week. The sendin …
10
votes
5answers
3k views
How do I unload (reload) a Python module?
I have a long-running python server and would like to be able to upgrade a service without restarting the server. What's the best way do do this?
if foo.py has changed:
unimp …
1
vote
2answers
114 views
How to force a page to reload if all what was changed in url is hash?
I am trying to reload current page with different url hash, but it doesn't work as expected.
(Clarification how I want it to work: Reload the page and then scroll to the new hash. …
1
vote
3answers
78 views
shift-reload in FF gives unexpected results
dear javascript mavins,
I'm presenting a simple animation using img.src replace and the <canvas> tag. At present it's only expected to work in FireFox (FF 3.5.3, Mac OS X 10 …
0
votes
1answer
340 views
problem with reload data from table view after come back from another view
I have a problem in my application. Any help will be greatly appreciated. Basically it is from view A to view B, and then come back from view B.
In the view A, it has dynamic da …
2
votes
7answers
123 views
best way redirect/reload pages in PHP
Hi,
Whats the best way to reload/redirect a page in PHP which completly removes all history/cache?
Which headers should I use?
The page today:
While clicking on a link, get-par …
0
votes
3answers
112 views
javascript reload and display message
Hi,
I want to reload page after deleting a row from table, and then display message, below is the javascript code,
if(action == 'delete'){
window.location.reload(true);
//tri …
0
votes
3answers
42 views
my layout breaks in IE7 and javascript page reloads make the screen blink
My layout breaks if I change the window size in IE7/AOL, so I added a simple javascript function that fires on window.onresize, but no matter how I change the location I get proble …
0
votes
3answers
129 views
python refresh/reload
This is a very basic question - but I haven't been able to find an answer by searching online.
I am using python to control ArcGIS, and I have a simple python script, that calls s …
