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?
...
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 new window with scrollbar in firefox?
thanks!
...
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...
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
...
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...
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,
...
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...
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...
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...
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...
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...
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
...