I am creating a redirect on our web site, and am wondering how to open a new window when the person is redirected.For example, the redirect below works correctly:
But what code would I add to make this open a new window. I am kind of self-taught and obviously not that knowledgable in this area. When I experimented and tried to plug in target="new" in a few places, it did not work.
I'd like to redirect from a certain page, to an external page(an external site), with certain parameters. of that window.
There is nothing to do if using response.redirct, but is there another option?
For example, I would like to open a new window, that will have a cerain dimensions, and that the url of that window is... In javascript it is not a problem of course. What shall I do in asp???
In the following snippet of code, I can not get my openBrWindow command to work. Does anyone see anything that jumps out at them that is obviously wrong? Code:
I want to open a new window from ASP page, which may not inherit sessions values from its parent.
I'm opening a new window (JS:window.open) from an ASP page, the child window inherits all the session variables from parent (thats what i dont want). and if I write session.abandon in the child ASP file, it also destroys the parent 's session values. how I can open an ASP page in new window which doesn't inherit sessions from parent.
We have several apps that a user logs in at on the same page. The app is determined by a drop down. User credentials are checked, response.redirect to the application. The user ID is stored in a session variable which determines if the user is logged in. When the session var goes blank, the user is redirected to the login page. A header on each page checks this.
Now, some parts of the app send an email out to a specific row. User clicks on link in the email, a new browser is opened, user logs in, and is forwarded to the app, AND the specific record that was in the URL.
What I would like is when the user clicks on the link in the e-mail, the existing browser window is used. I know this can be done because a colleagues Stock Trading program works in a similar way. He gets 3 emails. If he clicks on the first one, it take him to a login, and then is forwarded to the details of his stock trade.
If he leaves that window open, and clicks on the next link, the details of the stock trade are brought up in the existing window without him logging in. I looked at HTML to see if they're doing any tricks in the HREF, but it's just a link to a an HTML file.
I have a page where the ASP script create a table of links:
i.e. 1 = NextPage.asp?Item=1 2 = NextPage.asp?Item=2
etc
What I would like to do is open an new window with this link without any toolbars, addressbars, scrollbars and tabs. I would be happy even if the control to limit the appearance of the new window was in the new asp page.
When i select a order ,a new window opens up .I select the name from the new window .This window also has a submit button(there is a insert statement which gets activated on submit).
wht i want to do is when i hit submit ,the window should get closed and should be redirected to the previous page from where i actually got this window i.e by clicking on the order at the start. how should i attain this?
Is there a way to tell if a user (IE6) is opening a new window to the same session. ie. both (or more) windows are looking at the same info.
Just a clue as to how to determine this would be helpful. Server is running .asp and the client is always IE6. asp, vbscript, jscript or dhtml clue would be great.
I have the following ASP code which displays a confirmation message when a particular form is successfully submitted. What i need to do is open the message in a blank (_self) browser window. Can this be done using ASP or would it have to be done using Javascript?
I have one combo box and GO button on the click of GO button page submitted and according to selection of one of the option from combo I want to redirect my page to some new asp page but at the same time in new window of browser.
I could have achieved this using window.open() of javascript but then it will serve as pop up and clients requirement is that not to show as popup window due to many users blocked popups.
Any suggestions, How can I achieve this using response.redirect or any coding which is not serve as popup window.
how would I go about creating a pop up window so that when you clicked on the image it would open up a window with a comment in this case it says (dont' forget to save before opening the file) and then it should immediately close and redirect to the original page intended. How can I go about doint this in asp?
1. I have a form, with a textbox and a button. I have to enter a value in the text box and then i have to click the button, which opens a popup window. Here i want to pass the value of the text box which is entered in the parent window to popup window.
I have to use that value in the popup window's form_load event in the Code behind, and i have to take the values from the database using the value which i have entered in the parent window. Code:
I want to provide a lookup facility for users to select a code from a list. I want this to be done in a small popup window, which, when a code is selected, will close down and return the selected value to the main form. Can this be done ??
I'am not familiar wit ASP but I have to maintain an application. In a window there are some text selection fields and a search button. If you press on the search button record list is build according to what is filled in the selection fields. You can select a record and then a detailed window is shown or in another occasion a popup window is shown.
The request is now if the opened window or popup window is closed, then the opener window has to be opened with the same content (content selection fields + record list) as it was before the window or popup is opened.
Now I thought that I have read that every window which is opened gets an ID and that it is possible to call up that window by the ID from the cache again. Is that right? And if so? Or has somebody a better idea. Code:
but I keep getting a "permission denied" error. If I just put the same address string in IE6's Address box and go to it, IE opens myusername's FTP home page just fine, so I know the FTP site is working as expected. Also, if I put in an anonymous ftp site, without the username and password (e.g. "ftp://ftp.microsoft.com"), the redirect works fine, too.
I don't want the user to be prompted by IE for the username and password at the FTP site, so I am providing them from within the web site.
What can be preventing the response.redirect from handling non-anonymous FTP access? Is there a better way to do this?
I have an application that returns a PDF document to the browser (not as a download). The document is returned in a new window. This works fine in most installations, but I have one installation where it doesn't work in IE, but does work in Netscape. At the installation where it doesn't work IE returns the file download dialog box instead of just opening the file. When I click open or save it complains that it can't find the file. I suspect the problem is with the file name.
IE is generating a very long file and I'm guessing it is getting confused. My code did not originally set the file name, so I'm trying to solve the problem by setting the file name. Here's the code that I'm using, but it doesn't seem to have any affect. Does anyone see why this doesn't work? objHttpConn is an HTTP control that is used to retrieve the PDF document.
PS We are hosting the web sites where it does work and were it doesn't work and I'm testing using my PC. The only difference is the version of the application that returns the PDF document. All the machines are 2000 servers with IE 6.0 SP1. Code:
I have a slight problem, I'm trying to open a textfile that has been saved as UTF-8. But when I run it it displays strange chars eventhough i've specified that it should read the file as UTF-8 using the OpenTextFile method of the filesystemobject. I need to open the file, then insert data to a database, nothing will get printed out on screen so its not a html-charset
I have a table called "Document" which has 3 columns
Doc_ID Doc_Name Doc (this is a word doc stored as an OLE object in ms access)
Now in my asp if the user selects a document it should open the word file. I have my case statement that looks like as follows which I think might need some modifications to open a word file: Code:
I have a drop down on a page where user selects a value and then a excel file opens up it works good in mozilla but in IE it doesnt open up the excel file i see a new page been open but then suddenly it closes the file i have checked the popus in IE and i dont know what the problem is Here is the code Code: <% Response.ContentType ="application/vnd.ms-excel" getid=Trim(Request.querystring("id")) Response.write getid %> I see the output written when i use mozilla but it just doesnt work in IE.
so it opens up a new page i want to set properties of the page like we do for pop up window.like i want the new page to be of a specific size with no scroll bars and stuff i have the code for opening a pop up window in javascript
From a LINK or BUTTON on a webpage can we invoke the usual OPEN FILE dialog box that come with all the windows application .
In my Application I want to ASK the user the Name of a FILE on the disk ... currently i am asking the user to input the COMPLETE PATH in a TEXTBOX ....
I need to incorporate some emails that are in a csv file, all sorted in one column, into a mySQL database.I dont find the way to open the CSV file in ADO
in my database customer name is mike o'lee, i am creating one reason forum by using asp script and call customer name from database by using link syntax. when i trying to open the reason forum it displaying the error message like page is not found.
The problem is in single quotation which is present in customer name.I now how to remove the single quotation ,but use want to see the same customer name. how i can open the page,by using same page.
I donloaded a web application form the web which includes couple of asp files. So when I open index.html and click on the links to those asp files, instead of running the code inside, my browser tries to donload them.
It opens a save dialog box and asks me where I want to save this already existing asp files. Does anyone know solution to this problem?
I have a configuration.txt file and would like to open that file in a browser for editing onclick of a button or hyperlink!! It is more than enough for me, if i just open the file as it is in a notepad itself, by clicking a link from the ASP code.
I am trying to open a DB connection in an ASP file (with an HTML interface). I have some idea how to do it, but I am not quite sure. It is linking to an Access DB. It is very simple, I am posting some data to the DB. Only one connection is needed to open.