i have an ecommerce site that is split across two domains, a secure space that retains cc details and the main site where contact information and order details are held. I need to be able to produce a report that displays both sets of info in a printable document. aside from using iframes is there a better way of doing this?
how should i write the code of "First | Previous | Next | Last" in the ASp page? i mean like the yahoo mail, can just display 25 mail at 1 page. need to click on next button then can see the next 25 mail.
I have an existing asp project.What I want is to insert an asp file between 2 files.
file1.asp file2.asp -> new file(to be inserted) file3.asp
Inside file3.asp, it is getting values from file1.asp (using request.form) .Inside file2.asp, I want to add a sort of input variable which I will also use inside file3.asp...Is this possible? How can I get values from 2 previous asp pages?
My requirement is to show only 10 records in a table at a given time in an asp page.The next 10 can be shown by clicking on next button and so on.Page also have previous button.
is this possible in asp i have a validation page and need to send people back to the previous page if validation fails this validatation page is a standard one for all forms... thats why i dont know which page it has come from
I'm extremly new to asp and web development. Ive created a basic online phone book for our intranet which works lovely talking an sql database. only thing is i cant get next and previous buttons to work. I think its because it forgets the search the user requested?
I have a db that users search to return records. However, I want them to see only 10 per page and then, a NEXT 10 link that will display the next 10 results.I have tried using LIMIT , but it only returns the specified number but no links or way for users to view them or the remaining the search results.
The search results is getting lengthy and users are beining to scroll, whine and complain.I am using Asp, MS SQL 7 on WINNT.
I'm writing you because I have a question for you all: how can I capture the previous page from an ASP file? I need to add the URL (with parameters if possible) of the previous page to a table in SQL Server.
For example: the page that captures the info is anydomain.com/asppage.asp and if the previous page in the browser history is otherdomain.com/otherpage.asp, I need to be able to capture that information , If possible, of course...
I am having a web page where I having a text box to input the weekend date, and based on that user input date, i would like to populate the previous dates, example if user enter 06/24/2006, then page should reload and get the last 6 previous date like 06/18/2006, 06/19/2006...in sperate text boxes.
If anyone have some suggestion or having this code please let me know, I need to resolve this problem ASAP in my project.
...and a form with 2 text boxes containing 'Firstname1' and 'Lastname1' when the page is loaded - I need a button or link to load 'Firstname2' and 'Lastname2' into these boxes.
If possible, I'd like to be able to do this without refreshing the page....but if not it doesn't really matter too much....
I am doing a check on wether or not all of the inputs were filled in on a form. If not, I want it to basically just go back and not reload the previous page and resend the data and such. Just go back, fill in the field, and re-submit.
I'm trying to find any examples or instruction on how to code some ASP that enables someone to search an Access db with a date field (mm/dd/yyyy) so many days back (to be specific, the user could select 7 days, 14 days, or 30 days from a pulldown menu) from the current date.
I am trying to have my asp page direct the user to the page that called the current page, but the only code that I have found is on the MIcorsoft MSDN Knowledge base and it won't work.
I am trying to build a commission calculator for my sales team. Commissions are calculated every month. What is the syntax to pull all records from the previous month?
In other words, at the beginning of December commissions will be paid on November sales so I need to pull all sales recorded in November.
I found this code to pull the current month:
month(now())
so I added a -1 at the end for this
month(now())-1
I haven't tested it yet as I still have many things to do before I can upload to the server to test it. Is that the correct syntax? If not, what is? Also, how can I get the month AND the year?
This will be a default value of the Date field, so I need it in asp, not SQL.
I have created a recordset with cursortype 'adOpenDynamic'. i have used "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=abc;Initial Catalog=myDB" connectionString to open connection.
The problem is that ASP renders Operation is not allowed in this context' error when i call the moveprevious methord of that recordset. I have discovered that it doesnt move previous when i used a joined query. and it works perfectly when i use single table query. the recordset code is:
Set client = Server.CreateObject("ADODB.Recordset") client.ActiveConnection = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=abc;Initial Catalog=myDB" client.Source = "SELECT * FROM customer c inner join business b on c.id=b.cid" client.CursorType = 2 client.CursorLocation = 2 client.LockType = 3 client.Open()
it so that you could click a link which would open a new window with an map with imagemaps on it and when you click one of the links I want it to load in the original page ie where my home page and my menu is.
is there a way to do this without using javascript if so please could you let me know.
I have a form that I use to submit feedback to a database. The form can be called from any number of pages and I track the page that has opened the form using the server variable, HTTP_REFERER.
A user does have the option of submitting multiple feedback messages by filling out the form multiple times and clicking submit for each (there are different categories that can be chosen on the form itself that make this obvious).
The problem is that on submissions after the first, HTTP_REFERER no longer refers to the original opener but to the feedback page (since the user returns to the feedback page) . How can I capture and keep the original HTTP_REFERER? Code:
The users of my website can request to login from different pages. after login they are redirected ro index.asp but I want them to be redirected to original page where they came from
I tried to use
<% Dim backpage backpage = ServerVariable("HTTP_referrer") response.redirect(backpage) %>
I am trying to put a buuton into my page which will take the user back to the previous page. The reason i am doing this is that the user may come to this page from more than one other page.
I am using this code for the button, which i have seen on many code examples, but when i click on the button, it results in an error as if the existing page is trying to load itself up again.
have also tried using the javascript: history.go(-1) code in the form declaration as the onSubmit attribute, but this just makes the same page load up again.
How can I get a new Option based on a the previous select. When you select a room from selRoom (orange) I want the available equipment (red) that match on a foreign key (CampusID 'Not Displayed') to be displayed. Code:
I have an ASP page that lists a recordeset that can have dozens of records, at the end of each line is a details link that links to a page giving more detailed information about the record where a user can add and update information to that record.
At the top of the update record page I have a Back to Record List page. The problem is that when a user hits the Back to Record List page they are taken back to the Top of the list, I'd like to create a link that will take the user back to the record they just updated. I am carrying the data record number through the querystring.
I'm currently working with an ASP page that populates rows based on a query for course data by using a DO WHILE NOT EOF loop.
An improvement I'm adding is a dropdown populated by query which shows each course number, so that the user can populate that course page with data from a previous course.
My question is: once the data from the previous course is populating the current course page (after being selected from the aforementioned dropdown), how can that data be saved to the current course's row in the table? I've tried pulling the result.querystring to get the CourseID of the current course, but for some reason the changes don't save.
Would there be a better way to copy data from one row to another in a table? I am wanting the user to be able to preview the data as it populates the form fields before saving, if possible.
how can i get the data submitted by the previous form using " for each x in Request.Form " and display them same as the the previous form before and the only different is tat this time the all the data in this form is being disabled. (the data may consists from text box, combo box, radio button, etc.) . just wondering is there any way to perfrom like this..