QueryString, Forms, And Variables

I have a page with a link. The link says "Contact Me" and the code behind it is:

<a href="testcontact.asp?Recipient=dhalro">Contact Me</a>

Then when you are sent to the testcontact.asp page I have:

<% vName = Request.QueryString("Recipient") + "@hotmail.com" %>

<form method=post action="/email/forms/contact.asp">
<input type=hidden name="Recipient" value = "<% =vName %>">
<input type=hidden name="Subject" value="Test">

Followed by the rest of the form.

I know my contact.asp page is funtional because if I put my actual e-mail address in as the value it works.

Now I'm wondering if this is correct or even close. The reason I am doing this is because I have multiple pages with different usernames and I want it so you click a link and it passes the username to a form (i always want to use the same contact form) and then the person can just fill out the form and it send it to the appropriate person.

View Replies


ADVERTISEMENT

Asp Forms And Variables

I am passing a variable from one asp page to another say "land registry". It puts the variable in the URL (as land%20registry) as you'd expect. I want to add it to a hidden text box in a form so that I can then pass it back (eliminating the need to store this original search variable in a cookie).

However even though I can response.write the variable as "land registry" on the new page, so I know the variable is correct once its passed - it puts it in the text box on the form as just "land" so then when it passes back from the GET action of the form - it passes it back as only "land".

If I then write Land Registry into the form text box it works fine, but as this will be
eventually hidden and the user has already typed the search string on the original page - this is not an option.

View Replies View Related

Querystring Variables

I'm trying to include querystring variables in a #include but it's
not working

this works:

<!--#include file="calendar/calendar.asp-->

this does not:

<!--#include
file="calendar/calendar.asp?eventtype=1&curmonth=8&curyear=2006"-->

View Replies View Related

Passing Variables Using Forms

I am trying to pass variables using a form. This page is a simple page that is used when an Admin is trying to delete a message from our message board. They click on a link which calls this page and sends the message Id to the page. This page only contains a form with one text box for the Admin to enter his/her password. The form needs to call another page passing the message Id and the password.

I am having trouble getting the form to pass the message Id along with the password. The message Id is being passed to the "password page" via the variable 'Id'. Here is the code I have.

<FORM METHOD="GET" ACTION="BoardDelete.asp?Id=<%=Request.QueryString("Id")%>&">
Admin Password:
<INPUT TYPE=TEXT NAME=pwd SIZE=25>

<INPUT TYPE=SUBMIT>
</FORM>

View Replies View Related

Querystring Passes Variables But Can Not Retrieve

Querystring passes variables but can not retrieve????

Response.Redirect("Comfirmation.asp?requested= post & filename=" & filename)

View Replies View Related

Saving Querystring Values Into Session Variables

In a earlier post I made to find a solution a member suggested I save my querystring values into session variables. Code:

View Replies View Related

Can't Find Error. Issue With Variables, Forms, And Displaying Stored SQL Data

1) This is page built as a form which displays the content of a SQL database (a specific row) for users to update.

2) Each form field contains the actual information that the database has at this time (some Columns May or May not have info in it. No actual way to determine if its NULL or Just Empty).

3) I have the actual row selector based on the Unique ID (autonumber value). Its selected from a previous page and passed through GET.

Code:....

View Replies View Related

ASP Forms "Get" Server Variables

- I have a page with two radio boxes with values of "agree" and
"not_agree".

- The form is set to GET which goes to the below script for
processing.

- No matter which of the two radio boxes are selected, it always goes
to the page "/broadband/order.asp".

- There is no other code on the form processing page apart form what
is below. Code:

View Replies View Related

Passing QueryString URL As A Paremeter In QueryString

The subject sounds confusing but here is what i want to do. I have a
button on my page which says

OnClick="javascript:window.open('reportsContainer.asp?pag eURL=Report1.asp?intCurrentPage=1&blnRetrieveFlag=1&Show=1',TasksRPT');"

Now on the Conatiner.asp what i do is
if Request.QueryString("Show") = 1 then
pageURL = Request.QueryString("pageURL")
end if

And then i set the pageURL along with intCurrentPage and
blnRetrieveFlag parameters to my fram src as

<frame height=500 scrolling=auto name="pageFrame" id="pageFrame"
border=0 src="<%=pageURL%>">

Code:

View Replies View Related

Difference Between Environment Variables And Server Variables

can anyone tell me difference between environment variables and server variables.

View Replies View Related

Forms

I am trying to write a simple script that will allow me to have someone complete a form and depending on which location they choose an email will be sent to a specific person.

I have a page that validates and sends and email to me correctly, now I am trying to simply add a case statement that will allow me to change the recipient to the individual it needs to go to. What am I doing wrong? Is there another way of doing this?

View Replies View Related

Forms

Basicly I would like to know how to transfer data entered on a form one one page, to another - for example a signup:
Page one - Contains initial form
Page two - other details form ] both pages emailed through the same form.

View Replies View Related

ASP And Forms

I am trying to take that is submitted in a form and put it into a querystring. I have a text field with the name "company_name" and has the value of <%= cCompany%> when submitted I want to take the value of the text field and send it to another page called submit.asp. then from the submit page I will append it into a table. I can append to the table fine but when I pass the value its blank. I have tried Request.Form(company_name) and Response.Write(cCompany). None of these seem to work the variable is always blank when I submit it. I can use javascript to get the value, which works correctly but cant dont think I can pass a javascript variable into a querystring.

View Replies View Related

Forms

how come the second one has the forms lined under eachother
when the first one looks like it does?
How do i make the "boxes" in a straight line under eachother?

View Replies View Related

Forms With In Forms?

I’m working on an Invoice page. The user may edit some of the vars on the page. Then The user will want to re calculate the totals. Then after seeing the re calculated totals then I will want to submit this info to the next page where the data will be put into a DB.

The question is how do I do this without using 2 forms, It looks like you can not put a form with in a form. Yet it looks like that’s the only way to be able to pass the vars iEither to the page where were calculate the vars, or the other page where we submit the data to the DB.

View Replies View Related

ASP And Forms

i have

printerdropdown = printerdropdown & "<option value=" & rsPrinter("id") & ">" & rsPrinter("id") & " " & rsPrinter("name") & " ( " & rsPrinter("location") & " )</option>"

and want to pass two variables across my forum by selecting just the one.
i.e. rather then just passing rsPrinter("id") id also liek to pass rsPrinter("ccid")

But dont know how to without making it joined when i cann it on the next page via request.form("printerid")

View Replies View Related

Forms

Is it possible to call ASP functions from event handlers? I am trying to find a way to have a form call an ASP function, if there is a better way let me know.

View Replies View Related

Asp.net Forms

Is it possible to create a form that will authenicate against a 2003 domain?

View Replies View Related

ASP Forms

A client of mine has a couple of simple contact forms on their web site and they have asked if I (their web guy) could put together an ASP Form for them as their current form is out-dated and the radio buttons don't work right.

Not only that but, they do not even have a re-direct page setup so when a prospective customer completes the form and hits "submit" the form they just submitted stays in their browser window.

I have put together html forms but, I was wondering if I could get some help with creating an ASP Form for my client with disrupting the format & layout of their current Forms?

I have checked out some ASP tutorial sites but, they really do not give you the full picture in creating a "working" ASP Form.

View Replies View Related

Forms

how do you get the infromation from a form and put it into a database using sql .

View Replies View Related

Forms

I am trying to create a page with a drop-down select upon it. When the user clicks on a selection I want a new frame to appear with a new URL (associated with the selection) appearing in it.

previously when I have used select I have passed the value to the new page, but this time I want to go to a different page depending on the selection.

View Replies View Related

Forms

I have a very large form that clients will enter data into. When they submit the form I would like a page to come up where they can opt to confirm the form or go back and edit the form. I know this is possible is there a way to automate this so I dont have to retype the whole form again putting all the data in manual.

View Replies View Related

Forms

I need the form to be emailed to me once the form is complete. the problem I'm having is when the SUBMIT button is selected I receive a HTTP error 403.1. My web server admin isn't sure what is causing the problem. Is ASP the best way to go?

View Replies View Related

Forms Under SSL

I need to collect course registrations, with cc info, via an ASP registration form that would operate under SSL. The order info would be stored in a database that resides outside of the public web directory.

If I write a password protected utility that runs under SSL that allows the person processing orders to view/print records in this database under SSL so they can be manually processed, and after printing delete the cc number in the db, realistically, how secure is this? Host won't let me use PGP.

They don't want to use Paypal, and can't get an online merchant account because they're considered a high risk business (travel). What other options do I have?

View Replies View Related

Forms And .asp

im creating an application form for an existing site. The pages are all .asp but my form is .php. I have never explored asp before and know very very little about it. Not sure of the easiest way to create this form within these pages.

View Replies View Related

Forms

I have a form with 6 multiline text boxes each accepting data to be stored in a memo field. the form accept as much date as can be typed, but refuses to send data after
a certain limit (havent actually counted the # characters).

Is there a limit to the number of characters a form can send, or is it some other design problem.

View Replies View Related

Forms

Basically I have a form, where I have 6 option boxes, say Option box 1 has 3 options in it, being A,B,C. Is the a script around than when a user selects an option them form gets reloaded with the same option boxes, but between the first two option boxes a Text box appears with a certain label, this labels is altered depenging on the users selection. Code:

View Replies View Related

ASP Forms

I have built some ASP forms using Dreamweaver MX. I do not know much about ASP, so here is where I need help. The forms are writing to the databse with no problem.

how to get an email sent to the user confirming submission and to the admin, letting them know that the form has been filled out. Im sure it is not to complex to achieve this, but I am just not sure where to begin.

View Replies View Related

Forms In Asp

I have a form that is using the godaddy gdform.asp file for it's action. The form is simply to collect a user's information and then take them to a brochure download.

When they click on any of about 100 brochure links in the site, I would like them to go to the form, then after they fill in their information, have the submit redirect them to the correct brochure based on the link which brought them to the form.

View Replies View Related

ASP Forms

I need to create a form that has 2 fields, the first the user can enter information in set from a list of 12 things and then the 2nd returns the results from what ever they enter.

Any Ideas?

View Replies View Related

ASP Forms?

Tomorrow at work I'm away to make online form for a website that sells insurance. The user is going to have to fill out all his/her details online and they then get emailed to someone in the office who then prints out the email, and from the details the online user had submitted, calculate a quote and call them back. Code:

View Replies View Related

Forms And ASP

i've got to build a form in a page that lives on a WIN2K machine. No cgi-scripts are installed (i usually use formmail) and i figured this server will allow me to use ASP.

The problem is, i don't know ASP. Error!

Does anyone know how easy this is or where i can download an example from? I'm guessing there is a file that has a load of ASP code in it and the form is submitted to this file which then does its magic and forwards it to the recipients email. would that be true?

View Replies View Related

Help With ASP Forms

When getting form values i usuall do

Code:

varName=request.form("fieldName")

but this has gotten long and tiring with large forms. so i tried

Code:

for each item in request.Form
item=request.form(item)
next

but it didnt work.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved