Saturday, August 2, 2014

ASP.net c# Avoid open the same window twice

http://blog.startq.com/index.php/2013/03/28/prevent-multiple-tabs-on-c-web-applications/

http://stackoverflow.com/questions/10336312/asp-net-c-sharp-avoid-open-the-same-window-twice

http://www.codeproject.com/Articles/35859/Detect-and-prevent-multiple-windows-or-tab-usage-i

 http://jinaldesai.net/stop-sharing-session-state-between-multiple-tabs-of-browser/

Window features in window.open()

The table below lists the string features you can pass into the "feature" parameter ofwindow.open() to manipulate its interface. Most features support a value of true orfalse, though in general, simply including the name of the feature implies it should be added to the window (yes), while not including it means it shouldn't (no). Separate each feature with a comma (,).
FeatureDescription
channelmodeSpecifies if window should be opened in channel mode. IE only.
fullscreenSpecifies if window should be opened in full screen mode. IE only.
heightSpecifies the height of the window.
leftSpecifies the x coordinates of the window in pixels. IE only. See "screenX" as well.
locationSpecifies if the location bar of the window should be included.
menubarSpecifies if the menu bar of the window should be included.
resizableSpecifies if window should be resizable.
screenXSpecifies the x coordinates of the window in pixels. NS only. See "left" as well.
screenYSpecifies the y coordinates of the window in pixels. NS only. See "top" as well.
scrollbarsSpecifies if window should contain scrollbars
statusSpecifies if the status bar of the window should be included
toolbarSpecifies if the toolbar of the window (i.e., reload button) should be included.
topSpecifies the y coordinates of the window in pixels. IE only. See "screenY" as well.
widthSpecifies the width of the window.

No comments:

Post a Comment