Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
4answers
10k views

WPF Window.Close() not triggering UserControl.Unloaded event

I have a Window that contains a custom UserControl. The UserControl needs to know when the Window containing it has been closed so that it can terminate a thread. My best guess as to how to ...
14
votes
4answers
7k views

How to load a .NET assembly for reflection operations and subsequently unload it?

I'm writing a tool to report information about .NET applications deployed across environments and regions within my client's systems. I'd like to read the values of assembly attributes in these ...
13
votes
4answers
5k views

Ajax request with JQuery on page unload

I'm trying to do this: $(window).unload( function () { $.ajax({ type: "POST", url: "http://localhost:8888/test.php?", data: "test", success: function(msg){ alert( "Data Saved: " + msg ); ...
10
votes
2answers
2k views

DOM Window unload event, is it reliable?

Can I rely on the window unload event to be triggered when a user closes a tab/window/browser? Edit: Found a list of what triggers the unload event in IE. ...
7
votes
0answers
632 views

MapKit/Location Manager crashes app when unloading view

I has a bug where my application crashed "EXC_BAD_ACCESS" when I hit the back key on my navigation bar and the view unloaded that had a MapKit (mapView) and used the Location Manager. Tried for days ...
7
votes
1answer
443 views

internet explorer 7 iframe unloads when going back

Hi this is my first post here, so please be kind ;-) i'm implementing a browser history manager, just like rsh or yui browser history manager. The idea was not to constantly poll the url hash of a ...
7
votes
1answer
898 views

Unload CodeDom-compiled assembly

I have some C# code (let's call it "script") I am compiling at runtime. It uses an interface in my main program that I use to access its functions. Once compiling is done I have ...
5
votes
6answers
337 views

Autosave with “unload” event and ajax call on logout : order of actions is causing problem

I'm using a AutoSave feature on an online editor. When an user leaves the page (detected with unload or beforeunload event), I'm sending a AJAX request (async = false) to save the data. I have a ...
5
votes
4answers
97 views

May a compiler ever generate code to unload parts of the code segment during execution?

Apart from Dll concept that provides ability of loading/unloading methods or functions at run-time, I'm wondering if a compiler may ever say something like, ok as this particular part of the code ...
5
votes
4answers
880 views

Can the unload Event be Used to Reliably fire ajax Request?

I need a method to monitor user edit sessions, and one of the solutions I'm reviewing will have me using an unload event to send an ajax request to inform the server of the end of the edit session. ...
5
votes
1answer
1k views

AppDomain Unload killing Parent AppDomain

I am having trouble figuring something out about my AppDomain.Unload(...) call. I have a detailed explanation with code from my earlier question. As it turns out, I was performing a couple of steps ...
4
votes
1answer
45 views

How to record when user navigates away from iframe site

I have a site which sits within an iframe. How can I detect and record the time that a user navigates away from my site? I started doing this: $(window).unload(function() { ...
4
votes
3answers
276 views

Load DLL create Instance and Unload

I have a Application which copies a DLL (UserControlLibrary) to its own Debug/Release folder and loads it using this Code: AppDomain appDomain = AppDomain.CreateDomain("MyDomain"); OpenFileDialog ...
4
votes
1answer
316 views

AppDomain.Unload throws in Finalizer?

So here is the story so far, I have this worker thingy which uses an AppDomain to perform some task. The domain is expensive to setup and teardown. So I create a cache per-thread of WeakReference ...
4
votes
2answers
933 views

Ondemand javascript call on window unload using jquery

I have tried for "unload" and "beforeunload" binding in following code, but none of the browser is sending a request: $(window).bind('unload', function(){ $.ajax({cache: false, ...
4
votes
4answers
1k views

My app domain won't unload

At runtime, I'd like to be able to unload a DLL and reload a modified version of it. My first experiment went down in flames. Can anyone tell me why? Thanks in advance! private static void Main() { ...
4
votes
1answer
990 views

Detect when a Python module unloads

I have a module that uses ctypes to wrap some functionality from a static library into a class. When the module loads, it calls an initialize function in the static library. When the module is ...
3
votes
0answers
60 views

To create a Simple Plugin in Strobe Media PlayBack?

I tried to create a new plugin for my swf, and added it into the Strobe media Playback. I followed this tutorial. I don't have any error, but my plugin is failing to load, What coud be the reason ? ...
3
votes
1answer
788 views

How to properly unload an AppDomain using C#?

I have an application that loads external assemblies which I have no control over (similar to a plugin model where other people create and develop assemblies that are used by the main application). ...
3
votes
3answers
923 views

How to detect if browser is closed using jQuery

I need to detect if the browser is being closed using jQuery, and do an event if this is true. I have a chat feature on my website (much like facebook) that keeps the user logged in as they navigate ...
3
votes
1answer
383 views

How to distinguish Unload Event triggered by Refresh or Window Close?

Unload Event can be triggered both by Refresh action and Window Close action. is there a way to distinguish which action that actually trigger it? In my situation, i want to ignore the Refresh action. ...
3
votes
4answers
533 views

How to reliably send a request cross domain and cross browser on page unload

I have javascript code that's loaded by 3rd parties. The javascript keeps track of a number of metrics, and when a user exits the page I'd like to send the metrics back to my server. Due to XSS ...
3
votes
3answers
594 views

Kill unload function in JS?

Is there a way to kill the unload function with javascript(jquery)? I am looking for something like this: window.onbeforeunload = function(){ confirm("Close?") } or in jquery: ...
3
votes
4answers
3k views

How to reload an assembly for a .NET Application Domain?

We are loading an assembly (a DLL) which reads a configuration file. We need to change the configuration file and then re-load the assembly. We see that after loading the assembly the 2nd time, there ...
2
votes
1answer
43 views

Why does unloaded event of window do not fire in WPF?

In my WPF application I have created a window and show it as a dialog by calling it by the method ShowDialog(). But when I close the window by Close() method the Unloaded event is not fired for this ...
2
votes
4answers
83 views

java unload static fields

I have a java class that uses complex static fields which need special operations as close() so that they are safely cleaned by GC. For the initialization of static fields I use the static block. But ...
2
votes
1answer
112 views

jQuery .unload() doesn't show anything

I have the following code, <html> <head> <title>D</title> <script type="text/javascript" src="jQuery.js"> <script type="text/javascript"> ...
2
votes
1answer
99 views

Unload external .js file

I'm loading some HTML and JS with AJAX: main-page.html loads vía AJAX a page called page-to-load.html. <!-- main-page.html --> <html> ... <script> $.ajax({ type:"POST", ...
2
votes
3answers
49 views

Implement locking & unlocking a document while editing

Here's the situation: I have a web-based ticket application, multiple users. One problem that might occur (and does happen in the old version I'm replacing) is that user1 opens a ticket, edits it, ...
2
votes
1answer
162 views

Javascript load/unload to get PHP $_SESSION variables

I'd like to have a javascript function called on page load and unload which will set and unset a session variable. Currently the javascript (in line with PHP) looks like this (uses jQuery) ...
2
votes
3answers
158 views

jQuery - should I use the unload event?

I'm making a lightbox, do I need to use the $(window.top).unload(function() { .. }); to do clean up of variables, or will all browsers automatically clean up everything and reset memory and what ...
2
votes
2answers
343 views

Android browser unloads HTML5 audio element after each play(), causing delay

I have a simple app, which plays a short sound repeatedly, by invoking the play() method on the audio element in JavaScript. It works well on desktop browsers, ipads, iphones, etc. On a mobile device ...
2
votes
2answers
742 views

Unload plupload from a div

I'm using plupload with $("#plupload_div").pluploadQueue({ // General settings runtimes : 'flash,html5', url : '/products/save_photo', max_file_size : '10mb', ...
2
votes
0answers
119 views

How unload a ViewController class when switch to other view

How can i unload a viewController class when i switch to another view, so the class file won't run in the background anymore? Thanks for help!
2
votes
2answers
628 views

synchronous AJAX post from unload event: how to ensure user sees most up-to-date information from DB on next page load

When a user requests to edit an entry in our CMS we 'lock' it so that nobody else can edit it simultaneously, we release the lock when they submit their changes. However we need to handle the case ...
2
votes
2answers
158 views

Unload even on my form?

I want to run a subroutine to clear some things up when the user exits the application. I tried looking for a Form_Unload event or anything similar, is there a way to do this? I open a database ...
2
votes
2answers
932 views

Running a PHP through Ajax on Unload

I'm trying to have a php script run when the user navigates away from the page. This is what I'm using currently: function unload(){ var ajaxRequest; // The variable that makes Ajax possible! try{ ...
2
votes
2answers
1k views

Unloading objects for the garbage collector in AS3

I've created an object called loginInterface in flex builder. When this object is initialized it loads the login interface, creating buttons, input boxes and so on. I created a method for this object ...
2
votes
2answers
1k views

Does jQuery dispose events automatically on window unload

For example on a page I have $(document).ready(function() { $('#some-element').click(function() { // do something.. }); }); Do I also need to add the unbind code - or will jQuery ...
1
vote
1answer
42 views

Jquery unload page effect

I want that everytime a page is left (unloaded) in my website, a jquery effect is applied to . This is what I tried: $(window).unload(function(){ $("body").hide("blind", 2000, ...
1
vote
2answers
63 views

jQuery unload alert only when an id is not present

I'm working on a shopping cart page and I'd like an alert to be displayed when the user tries to leave the page when they still have items in their cart. When the cart is empty, there's a div with an ...
1
vote
2answers
59 views

What is the implication if I do not set a property = nil in viewDidUnload method?

I have defined a property in my viewcontroller as follows @interface QuestionAnswerViewController : UIViewController { Question *question; } @property (nonatomic, retain) Question *question; ...
1
vote
2answers
138 views

Memory leaks on DLL unload

A C++ console application loads a DLL at run time using LoadLibrary() function and then calls some of the functions exported by the DLL. Once the application is done with the DLL, it calls ...
1
vote
1answer
95 views

Objective C: Calling the ImagePickerController (SourceTypeCamera) unloads other pages (other tabs) in tabbar controller

I have 2 tabs, one that contains the imagepicker controller, and another that contains a UItableView as a subview to a uiview controller. I realise that when I call the imagepicker controller ...
1
vote
2answers
167 views

javascript COMET request onunload

I've recently taken over a project that uses COMET to perform some collaborative work and handle a simple chat room. The guys who originally wrote this thing made up some classes on top of STOMP and ...
1
vote
3answers
398 views

$(window).unload not working as expected

I'm making a small chat application with PHP + MySQL + JavaScript, I've written a function disonnectUser(), which is called when the user press the disconnect button. Here it is: function ...
1
vote
2answers
135 views

Is there a way to unload a file which has been loaded into memory from the File API's FileReader.readAsDataURL method in javascript?

I am writing a javascript application using the File API in Google Chrome. I am loading the files with the readDataAsURL method. I only need one file loaded at a time. So, each time I load a file, ...
1
vote
2answers
283 views

should i unload javascript script?

i want to know if it will effect the site to not unload javascript and css files, when other files are keep loading on the site. well im creating functionality like facebook with ajax, so i was ...
1
vote
1answer
493 views

WPF unexpected control unload

Im developing a WPF application using MVVM. Inside a Window, I have a control that inherits from UserControl, lets call it DetailView. DetailView is binded to a property in the VM (CurrentDetail) ...
1
vote
3answers
730 views

window unload method in javascript

Why doesn't this code work? $(window).unload(function(){ window.location = 'http://www.google.com/'; });

1 2 3