I'm trying to build a tray for users to download their selected items. I was wondering if anyone knows how to response.redirect a file (for the user to download) and check to see if the download was successful/unsuccessful, then have the asp page reload itself based on the result?
e.g. something like this:
if Session("FileName") <> "" Then 'a file is ready for download
response.redirect (Session("FileName"))
** check if download successful, then set
** the tray info accordingly and...
response.redirect thispage.asp
end if
Of course the second response.redirect never gets called, is there any other way I can do this?
I am having one asp page(i.e home page) which has two frames in it. Left frame contains menu and whichever option is clicked in it that corresponding page is shown in the right frame. In those pages i am checking for sessionid and if it is different from what is there in the table i want to show the login page.
The problem is that as i am using response.redirect in the pages shown in right frame to go to login page but then the login page is shown in just the right frame but i want to show the login page on the whole page.
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 do i pass form values through a redirect statement to another page. I have a redirect stt. Response.Redirect "exist.asp" and i want to pass form values to be displayed from exist.asp.
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 am creating one website using ASP. there r various users, who logs in & access the page. for this i m storing userid in session using session("userid")=username, & according to that i am giving access. in every page i am checking , if session("userid")<>"" then response.redirect("login.asp") end if.
when user clicks on logoff link i make session("userid")="" & response.redirect("login.asp").
In this case if anyone click on back button on browser, it is showing previous page,if that user refreshes that page then it is diverting to login page. i want to write such code so that if anyone clicks on back button after logoff then that user will be diverted to login page. can anyone tell me how to do? i ve tried using metatag , but it is refreshing the page after certain interval, so not useful to me.
I have a menu that calls a specific asp page and passes a variable
data1page.asp?year=2001
where the value of the year variable is determined in code.
This works fine the first 2 times I call the page but after the second call, all future calls get the data for the same year as in the 2nd call. If I click on "Refresh" and then try a different call, it works as expected. I suspect the I am getting a cached page (why?).
How can I execute a call with a forced refresh and/or how can I prevent the called page from being cached?
I have this page where I have some text boxes and also a dropdown list. My plan is to refresh the page automatically when an option is chosen in the drop down list. After refreshing, there will be a set of digits that will be shown, and the digits come from a database.
I have an ASP Page where a user can update their account info.Having updated their account details I do a Response.Redirect to the same page in order to refresh the details. However, I want to display a message on the page that their account has been updated successfully.How can I do this and also refesh the page without clearing the message?
I have to refresh a page for 5 seconds and then load a page called Dsp_FavAddOption.asp I am getting an error page cannot be displayed. What i am doing wrong.
I have developed a page which is refreshing once a second thru the meta tag. It is working if the page is in maximized view. If i minimized, it stops to refresh the page. How can i do it while the window is in minimized state.
My web page is calling a result set that is displayed on the page. If I click refresh, it pops a warning saying, "The page cannot be refreshed without resending the information." I then have to click RETRY in order to refresh the page.
Is there anyway to automatically perform that action so that my users will not have to be prompted?
I have an application that displays messages that are stored in SQL server The application uses frames
In the vertical frame along the left side of the page, I enumerate the current messages. This frame is named "SELECT" Clicking on a message subject causes
In the main frame, named "BODY" I display the message that is retrieved from SQL Server in a textarea.
When a message is displayed, I also display a prompt ro delete the message.
The delete prompt works just fine except that I need a way to update the enumeration of messages in the "SELECT" frame.
Is there a practical way to force the page in the select frame to refresh itself when I delete a record?
I am having a serious doubt in the following issue. I have written an asp page to enter the user info like the userid, passwd, address, phone no. This page first checks for the existence of userid and gives an alert message in java script saying that the userid already exists. but when the page is refreshed, once the alert box appears, all the other fields entered previously gets lost.
the page is directed to the original screen and the user ends up typing all the fields again. how do i direct the page to store all the data that was previously typed and still give an alert message? can i get some examples on how to do this?
I have an ASP page that displays random facts. Data is stored in a database. Everytime user hits on refresh, randomize function shows a new fact. I would like my asp page to refresh automatically every minute or so and run the randomize funtion and show a new fact. Is it possible with ASP? I have seen it done with Flash.
we built a dynamic shopping cart inhouse using ASP and VB SCRIPT. however when it wants to load in (IE only) the page keeps auto refreshing or should i say looping. We have checked the scripts in and out and their are no errors, timeouts, EOF or BOF, or any on error resume next. Is there a reason or way to debug this ? it only loops in IE, as other browsers are fine.
I have an asp page that gets populated from a SQL Server database. Normally when the page gets displayed it displays the current record from a select statement that can return lets say seven records.
The problem I am having is when I click the refresh button in IE, the page displays another record instead of the record it was displaying before I clicked on the refresh button.
I cannot figure out why it is doing this. Has anyone experienced a similar problem? If so, what solution did you come up with.
I have an asp application where in a certain page you have to enter a PO number, if you click the search it will bring up the 15 most previous PO number w/some information.
I want to be able to have those PO Numbers to be links, that when you click them it closes the new window(I have this) and the parent page can grab the PO number clicked and display that in this text field how would I go about this?
I have an VBScript/ASP page that lists bikes that are checked out. For each checked out bike, there is a button to check it back in to the system.
Problem is, that when a bike is checked in, it is properly removed from check out in the database but will still appear in the recordset when the checked out bikes are re-listed.
Recordsets should be destroyed after a page is rendered -- correct? I've tried multiple methods of forcing a refresh to no avail.
I included the following (and multiple incarnations of it) at the top of the ASP page just below the language declaration. Code:
how to stop sending data to the database when refreshing the page,i use access database with asp,all the time that i refresh the page same data goes to the database again and again
How do we update a single entry on a forum page without refreshing the whole page as we do on this forum with quick reply; When we type some data and press quick reply, only the text written is added to the page and none of the existing page contents are updated. I hope my question is clear.
IF Trim(Request.QueryString("v")) = "" THEN Back = Replace(Request.ServerVariables("Http_REFERER"),"http://localhost/","") ELSE Back = Request.QueryString("v") END IF