What's hot ? (and I mean really ...) - scroll down for more
1).  Code Templating - advanced usage of delegates & generics: my slides & demos are available for download! CodeProject article is also available.

2).  My series "TDD in the eyes of a simpleminded" is in progress(including code!): preface, part1, part2, Q&A 1, Manual Stub .vs. Mock Stub

3).  TDD Workshop: SeeCompass v0.1 and v0.2 are out.
# Saturday, September 03, 2005

Sometimes we have to close the window after our screen logic has executed, so usually we're writing window.close(); in our page BUT this causes this message to arise -

close_areyousure.gif

If you want to avoid this message, simply write:

window.opener = window;
window.close();

Tuesday, May 22, 2007 6:32:17 AM (Jerusalem Standard Time, UTC+02:00)
Thanks dude,
was really simple and u cared to mention that.Other stuffs i found on net are taking pretty long route for this .
Preet
Comments are closed.