newwindow

System.Windows.Forms.WebBrowser open links in same window or new window with same session

When using the .NET WebBrowser control how do you open a link in a new window using the the same session (ie.. do not start a new ASP.NET session on the server), or how do you capture the new window event to open the URL in the same WebBrowser control? ...

Javascript Pop Up Page Makes Text Invisible In Internet Explorer

I'm working on a project at the moment where I've come up against a rather frustrating problem in Internet Explorer. I have a series of pop ups on a particular page that are opened with JavaScript when help links are clicked. The JavaScript for them is: function openHelpPopUp(url) { newwindow=window.open(url,'name','width=620,height...

How to use 'window.open' to create with scrollbar in firefox?

How to use 'window.open' to create new window with scrollbar in firefox? thanks! ...

How to view a file in a new window in TextMate?

I am giving TextMate a try for some quick editing of a few script files. I would like to be able to view two files side by side while working on them instead of having to switch between tabs. I can't figure out how to display a file in a new window. I tried dragging the tab off the window (tear off), looking through the menu options, a...

How to prevent a iframed page from opening in a new window

Hi, I have a site iframed in and it has a bunch of links in the menu. The way their site is built they have all the links in the menu set to open the pages in a new window. Is there any way to override this and have it open in the iframe? Thanks, Matt ...

hyperlink in new window c#

I have a variable with hyper links (www.wow.com) like this. I have to pass this value to <a href=""> here in this href tag. My real task is to open this hyper links which will change time by time in my variable, in new tabs. For that I have used javascript in my asp.net web application with c#. I have used window.location function in js...

hyperlink open is seperate windows

i have used a js code to open a hyper link in a new window. function openNewWindow() { alert("hello"); var theurl="http://www.google.com"; popupWin = window.open(theurl, 'open_window', 'menubar, toolbar, location, directories, status, scrollbars, ...

WPF WebBrowser: How I do access progress and new window events

I'm building an a WPF app that uses the WebBrowser control. I'm struggling on a couple of points: How to get the current progress of a download from the control. The WinForms WebBrowser control raises ProgressChange events - how can I relicate this feature with the WPF variant? How to capture links that are trying to open in a new w...

How to open search result page in new window for javascript search engine which works in IE?

Check this http://javascript.internet.com/forms/multiple-search-engine.html page. I wonder how to open search result in new window which works for Internet Explorer. Also, how to set body onload for the searchbox. Please help me. This third times i asked but there's no expert able to solve this. Before this, an expert was sent a solution...

link in SWF should open a new page, but doesn't

Hi, I have some images floating around in my SWF. The SWF holds several buttons, linked to those pics etc. The buttons have actions: on(release) { getURL("http://domain.com/sub/folder/page.html/"); } When clicking on the image I would like a new page to open in which the link is executed. How come the current code isn't working? thank...

How do I open a new window with POST data from a Gridview's onRowDataBound event, that must pass values from the other cells?

Okay the question is not exactly straightforward: let me explain. I have a gridview, that I have hooked up to a datasource and all is peachy. I need to open a more detailed page for each row, so what would be the best way to do this? Currently I have something like this in the onRowDataBound function: if (e.Row.RowType == DataContr...

Generate a normal Link (<a href="...">) in ExtJS

Hi, I'm struggling with a really simple problem here. I want to generate a normal link in frontend but it seems to don't work somehow. Here is the code i use for the generation of the link (the link was a button before which obened a new window with a specified URL on click). { xtype: 'button', id: 'PrintTool', tooltip: 'Printer...

How to force a pop-up to open in a new window while (Always open pop-ups in new tab) is checked?

Currently, under IE8 and in IE7, using javascript window.open and target param is set to _blank, and while (Always open pop-ups in new tab) is checked, the pop up will open in new tab. Is there a way to force the new pop up to open in a new window from javascript? Is there a solution other than javascript? Thanks ...