Interactive Userform

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Interactive Userform

    Not too sure if this is the correct NG, but here goes....

    I am in the process of creating a website
    ([url]http://www.continental-translations.com[/url] - well someone is creating it for
    me) and I am hoping to put an interactive userform in the website.

    Basically I have an MS Access Database set up so that I can pick a language
    pair, insert how many words, and then it will search the database and come
    back with a price, based on the info from the database. Is there anyway I
    can do this on a website? I have heard I need to use ASP or something?

    Have a look at this website to see what I mean:-

    [url]http://www.thetranslationbank.co.uk/onlinequote.asp[/url]

    Any help would be appreciated!

    Thanks

    PS: I'd need a step-by-step guide as I'm not that clued up.
    PPS: I am using MS FrontPage 2000 to create website


    Continental Translations Guest

  2. Similar Questions and Discussions

    1. Help Please! Interactive map
      I have to create an interactive map, which shows the campus layout of a university. I want the user to be able to rollover, or click on any...
    2. Interactive Map
      Hi!What I'd like to do is this I have an animation size ca. 500x400 dpi. In this animation I have a map of one part of a city that is cut into...
    3. interactive tv
      Does anyone know where i can find some information on how to develope an interactive tv enviroment (preferably a tutorial). the specific type of...
    4. Interactive pdf?
      Using an Excel spreadsheet, a program has been created to determine the high and low cost of an item. Is there a way to turn this spreadsheet into a...
    5. interactive map?
      Please help, I'm trying to build an interactive map where a series of buttons to the side of the map add elements (roads, attractions, etc') onto...
  3. #2

    Default Re: Interactive Userform

    <<

    Not too sure if this is the correct NG, but here goes....

    I am in the process of creating a website
    ([url]http://www.continental-translations.com[/url] - well someone is creating it
    for
    me) and I am hoping to put an interactive userform in the website.

    Basically I have an MS Access Database set up so that I can pick a
    language
    pair, insert how many words, and then it will search the database and
    come
    back with a price, based on the info from the database. Is there anyway
    I
    can do this on a website? I have heard I need to use ASP or something?

    Have a look at this website to see what I mean:-

    [url]http://www.thetranslationbank.co.uk/onlinequote.asp[/url]

    Any help would be appreciated!

    Thanks

    PS: I'd need a step-by-step guide as I'm not that clued up.
    PPS: I am using MS FrontPage 2000 to create website
    >>
    Here's a possible SQL statmeent I just put together on a sample database
    getting the highest invoice number (which is akin to number of words in
    your case) up to or including the desired invoice number which may or
    may not exist. And for that invoice number it gives the customer number
    (which is akin to the price in your case).

    SELECT TOP 1 tblInv.InvID, tblInv.InvCustID
    FROM tblInv
    WHERE (((tblInv.InvID)<=1011))
    ORDER BY tblInv.InvID DESC;

    And in the above the 1001 for the invoice number is hardcoded but here
    is how to do something like that in a non-hardcoded manner (although in
    your case the multiple fields aspect may not apply):

    Classic ASP Design Tips - Search Criteria on Multiple Fields
    [url]http://www.bullschmidt.com/devtip-searchcriteria.asp[/url]

    And [url]www.asp101.com[/url] has a Samples area with some short database examples.

    Best regards,
    J. Paul Schmidt, Freelance ASP Web Developer
    [url]http://www.Bullschmidt.com[/url]
    Classic ASP Design Tips, ASP Web Database Demo, ASP Bar Chart Tool...


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Bullschmidt Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139