Passing Variables Between Pages Using POST
I having trouble with this action cause I want the user to be able to use the back button and the submitted data should be still in their form. So I the user send invalid data he can back browse and change the invalid data. I use method=POST cause its a lot of data i send between pages + client is IE6 ...
View Replies
ADVERTISEMENT
I have a page that lists many records. One field in each record has a hyperlink based on the records ID. I click on this hyperlink and it sends me to another page and also sends the ID with it. How do I pull this ID and paste it on the new page. Below is the sending and receiving page and the code I have on each.
this correctly sends to new page with releaseID passed in the browser URL
Response.Write "<a href=""modifyCompleted.asp?releaseID=" & rsList("releaseID") & """>" & rsList("requestNum") & "</td>"
Shouldn't I be able to display the ID without connecting to the database.
<%
Dim ID
ID = Request.Form("releaseID")
%>
<%=ID%>
View Replies
View Related
I'm posting a form from a php page to a page that's asp. I want the url parameters sent to the asp page to be the defaults of the form. I've never used asp so I'm not sure how to do this.For example:
www.test.com/test.asp?clientid=123
Text field in asp/javascript form called "client" should now default to "123".
In php I would have put this as the default value for the "client" field in the form: <?php $_GET['clientid']; ?>
What would be the equivalent way of doing it for asp?
View Replies
View Related
I'm trying to pass login information to a second page using POST and I am getting empty variables(or at least thats how it appears. I'm new to ASP so this is probably a very easy thing to fix. Here is a section of code from the page that has the form. Code:
View Replies
View Related
I have page1.asp with a form on it, then this goes to Page2.asp, the data is processed. I then want to access the same from data on page3.asp. Is there any simple way to transfer all POST requests to page3.asp without having to put them into session or Query-strings?
View Replies
View Related
How do I post an HTML form to multiple ASP pages? I need to do two things with my data at the same time and it would be very helpful if I could spawn the processes when the HTML form is posted, not through downstream ASP handling.
View Replies
View Related
Assuming the following code actually worked, I'd like to take data entered from one form and post it to two different locations. Hypothetically, I have a server in NY and one in LA that I want to get the same information.
<form action="http://ny.server.com/test.asp"
action="http://la.server.com/test.asp" method="post">
Name:
<input type="text" name="request" /><br />
<input type="submit" value="Submit">
'''Contents of ny.server.com/test.asp
<%
response.write "Data saved on NY server"
%>
'''Contents of server2.com/test.asp
<%
response.write "Data saved on LA server"
%>
View Replies
View Related
I have IIS server installed on XP-pro. I also have Norton Internet
Security installed.
I can run simple ASP programs without any problem. But when I use forms
with post method and call an asp in action, it does not pass any data
to ASP.
Request.Form method on a form field does not return any value.
This code works on web hosting provider server, just does not work on
my workstation with my own IIS server. Code:
View Replies
View Related
I need to transfer a variable value x from 1.asp to 2.asp and maintain that value on 2.asp. Now the problem is that there is a save button on 2.asp which clicked for the 1st time finds the variable x stored in a hidden field. But wen clicked again it is not able to find that variable.
View Replies
View Related
I am passing a value to a form through the URL as follows:
<A href="http://www.xxxxxx.com/orderone.asp?text="radius">http://www.xxxxxx.com/orderone.asp?text="radius"
On the orderone.asp page, I am reading the value into a text box as follows:
<input name="Template" type="text" id="Template" size="25" maxlength="255" class="body" value=<% = request.querystring("Text") %>
so far it works fine. It shows the value in the text box on the page. I am trying to post this page with all the form fields to a new page that emails all the variables that are on this page. The form tag looks like
<form action="Orderform3.asp" method="post" name="order">
In orderform3.asp, i am requesting the values for all the form fields as follows before emailing all the fields to myself:
strBody = strBody & Request.Form("Account_Name") 'strbody is the variable that adds all the form fields to the body of the email
strBody = strBody & vbCrLf
strBody = strBody & Request.Form("Contact_Name")
strBody = strBody & vbCrLf
strBody = strBody & Request.Form("Template")
Here is the problem...I am getting the email with the values filled in except for "Template" and I cannot figure out why. Is there something that I am doing wrong? i have to mention that there is no DB behind this site...it is just a static web site with an email script in it.
View Replies
View Related
Could someone please remind me how to get all the form variables in a post?
View Replies
View Related
I have a very simple form, username and password, which uses the post method. The asp page resides in the root www directory. when I submit the form, the variables are not posted, I cannot pull any info with request.form. However, if I move this script to a lower directory (/www/test for example) the form works perfectly fine.
Anyone experiece this problem? Anyone have any ideas? I am stumped and my head is sore from beating it on my desk for the past hour.
View Replies
View Related
This is what I need to do:I need to send variables to a website and in return I'll get xml that I need to parse. what should I use to post those variables to the website and receive the response?I tried to use the XMLHTTP object from Microsoft but I always get some kind of error.
Ex: An example of what I need to post is:
https://somedomain.com/pvtn?A030=M00...=200505&C042=0
Now I do I post this and get the xml response?
View Replies
View Related
I cannot view Server Variables Specifically HTTP_REFERER, in an ASP Page that I access either by a From POST from anothe rpage or a link.
View Replies
View Related
onclick of an image button in my main page(parent.asp), im calling window.open("child.asp")as a popup!! child.asp has 36 checkboxes and a submit button.
I want my users to select any or all of the checkboxes and on clicking the submit button i need that popup(child.asp) to be closed and those checked values to be passed on to the parent page(parent.asp)!
View Replies
View Related
I have a asp page created which pulls information from an access
database. One of the things it pulls from the database is the address.
I want to put a link on this page which when clicked will open a
smaller new window asking the user to input their address. Once they
input the address and hit submit, the 2 addresses, user inputted (as
starting point) and the one from database (ending point) needs to be
inputted such that a url is formed, leading to the directions page on
yahoo or mapquest or any other site.
My question is how do I take the ending address and pass it over to
this new page (using http_referrer???) and then construct the url to
the directions page.
View Replies
View Related
Because of �refresh� problem after updating the form. So, I have to put the confirmation message in a seperate page:
1.update.asp page click update - goes to updated.asp (update to the db and sending email) then redirect to updatedconfirmation.asp page (confirmation message)
I would like to carry a few information from update.asp page such as name and their address to the confirmation page depends on their ID, how can we I do that in the updatedconfirmation.asp?
I�ve used hidden fields in the update.asp page. but there is nothing display in the UpdatedConfirmation.asp page Code:
View Replies
View Related
Is it possible to take a value entered on one page and access it on several different pages? For example, I want the user to enter their email on the first page, make a selection on the second page, and the third page will display a form based on their selection on the second page. I then want to submit all the data entered on the form on the thrid page along with their email address from the first page to a database.
View Replies
View Related
If I have a DB table which spans multiple pages, and if the check box is selected next to the item after all pages are view the user then selects done I need it to pass everything they selected to one page so they can view it and verify that is what they want. Then it is passed to a DB and also sent to me and the user in email.. I know it is alot, but it is what I need.. any suggestions or directions??
View Replies
View Related
I am creating a form that has 5 steps/pages. Each page contains about 20 fields. But I don't want to write them until they submit on the last page. I figured out that I can use hidden fields to carry the data from the previous forms forward. If should bascially work like this:
Page 1 Page 2 Page 3 Page 4 Page 5 Page 6
20 Fields 20 Fields 20 Fields 20 Fields 20 Fields 100 Hidden
20 Hidden 40 Hidden 60 Hidden 80 Hidden Write to DB
But the problem I am having is when I submit page 4 page 5 won't load. No error, it just won'tload. It seems to be overburdened. Is there a max on the number of fields it can pass? Is there a better way to go about doing this that someone can suggest? Or a suggestion that someone can make to fix this problem?
View Replies
View Related
I am building a site with ASP (VBscript) . the site connected to the database (MySQL)
I have several different pages on my site they are working with different tables in database [U]but I have to dilever information from one page to others [/U] ,I don't know how to do that . For Ex: When a user enters my site he is on first page (Index.asp) , if he moves to other pages ,I need to transfer his username and other information .
View Replies
View Related
This is hopefully a really simple issue... but what is the best way to pass a variable from one .asp page to the next?
View Replies
View Related
I'm trying to post variables using http to a site with a different domain and need my page to wait until it gets a returned value back and then insert that value returned into a database. Once I'm able to get the variable back i know how to get it into a database, just don't know how to have the page wait for the value returned.
View Replies
View Related
I am trying to write a search application which will allow a database holding a text to be searched.
To search the text the user has to select the act, the scene, the character
Right this is where it gets tricky!
The acts all have different scenes and the scenes all have different characters - so rather than try and attempt a very complicated linked combo box for the act, scene and character I figured a more sensible way of doing it would be to have the user enter the act they want to search on one page. The value of this would then be passed by form to the next page (to get the scene).
Based on the act selected a dropdown box is then populated with all the scenes for that particular act. Following on from this I then want to pass the scene selected together with the act selected on the previous page to the next page which will get the character. I can get the scene value passed through to the character page but not the act value as this is now a server side variable. Basically what I want to end up with is after the user has selected the character on the third page, I want to be able to use all this information to build an SQL search statement.
In case you are wondering why I decided to do it in this way, I initially tried the linked combo box method but found that if the user doesn't click the boxes in the correct order it causes problems with updating the box contents. Doing it this way I figured I can force the user to enter the information in the correct order. Code:
View Replies
View Related
Is there a way I can pass a javascript variable's value and use it in my asp code?
This is what I am doing:
I have a checkbox.
onclick="SelectView('course')"
javascript:
Function SelectView(course){
var course
course = 'course'
}
then in ASP (again)
if (javascript variable course = course) then
do something
end if
View Replies
View Related
I've got a form that has ENCTYPE="multipart/form-data" - this works great for getting a file from the user, however, no matter what I've tried, I can't seem to get any of my other fields passed to the next page. Here is an example:
<input type="text" name="lname" value ="<%= request.form("lname") %>"> I need the "name" field to be passed to the next page.
This if my form tag:
<FORM NAME="UploadFile" METHOD="POST" ACTION="UploadFileAck.asp" ENCTYPE="multipart/form-data">
I've tried an onblur when a name is entered, but it still doesn't recognize the lname field. Any ideas would be appreciated!!
View Replies
View Related
I hope I can explain this without much confusion.I have a search box on a site that contains 2 forms. One form is a search for Cities (via dropdown box) that goes to citylistings.asp. The other form is a search for Counties (via dropdown box) that goes to listings.asp.
Now I need to add the ability for the user put a Minimum and Maximum price in addition to the above. My problem is that I am unsure how to have just one set of price boxes for both forms. So that you can fill in the prices, and click Submit for either form, and the prices get passed.
You can view the page Here.
A guy who used to code in VB said that I should be able to declare variable, then when the user clicks on the box and types a value, the variable is set to that value. Then I can added hidden fields to the forms that are equal to the variables. Can I do this using ASP/VBScript.Or can I accomplish something similar?
View Replies
View Related
I have a function set up to send out an email. The function recieves parameters(email, subject, body). For some reason the function will only work if I change the function to accept only one parameter. ie. function imail(email).
View Replies
View Related
I am developing a website for our agency. My plan is to make a master-detail Page. In the Master page it will consist of 2 fields. 1. Project Status 2. Type of Project. and also it has a submit button. Once the submit button is click it will query my database based on the content of the two fields and it will be displayed in the detail page.
I am using Dreamweaver. I have tried their master detail page but it only can filter 1 field. also I have successfully connected to my database. Any suggestion on how will I ba able to accomplish my problem?
View Replies
View Related
I have an ASP project where I have users select or input values into a criteria page and then once they press "Submit" the ActiveX viewer displays the crystal report. All works fine and the criteria can be somewhat dynamic because the variables are used to build a SQL statement that is passed to the crystal report as the dataset.What I would like to do is create a variable on the Crystal report that will display the SQL statement or at least an English translation. This variable will be used to display the criteria of the report so end-users can see what criteria was used to generate the output of the report.
View Replies
View Related
I have a site that needs to look at an IFRAME for a login and search form but then break out of the IFRAME and pass all of the variables back into a page on my site.
For example:
Homepage (mysite)
Page with login IFRAME
Page with search form IFRAME
Search results (mysite)
How can I pass the variables from the search form IFRAME to the search results page?
View Replies
View Related
I know there has to be away to pass a variable from a .html page to a .asp page form field.The html page with the $name$ variable will be sent to a popup .asp page via a link on the html page.
The popup window (ASP page) is where a user would see a form field to enter there telephone number, a drop down for their carrier, and of course a form field with the $name$ variable already populated.Kind of a send this to my phone deal.
View Replies
View Related
Im working on a form that needs to submit the contents i.e. username password etc to itself then response.redirect to another form. How would i pass through the value of the username to the next form when i use the response.redirect code to get to the next form?
In the past i would add the contents of the previous form when the second form is opened, but with this i want to submit the contents then open the next form with the username stored in a hidden field or somthing similar.
View Replies
View Related