Relationships

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have created a form & I want one field to recognize what I have entered
into another field and automatically enter a value.

For example when I enter in a type of gravel and the size, I want it to
recognize that gravel & automatically put in a price. Can anyone help?
 
You would need to have a database driven application the based on the selection a price is then
looked up. This could also be done with client-side JavaScript, but prices, etc. can be modified by
users.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================
 
This takes programming on the client side using JavaScript. That could be
the easiest way as it only gets more difficult from there (such as posting
back to the server to lookup values in a db to populate another box).

You'll need to build up some sort of list of values on the client in order
to determine the price (or use a mathematical formula if your pricing can do
that). There may be some javascripts already out there that you could use.
The two best places to start are javascript.internet.com and
www.dynamicdrive.com

This isn't the easiest task in the world to do, especially if you don't have
programming experience, but it can be done.
 
Back
Top