Ask a Question related to ASP, Design and Development.

  1. #1

    Default Pull down and add

    I know how to enter data to a SQL database from a form.

    I am making a form where the user inputs some numbers.

    Than other users login to this other place and I want the
    number that the person imputed to be shown in a field
    multipled at a certain price. I am unsure how to pull the
    numbers down to display them and do the multiplcation.
    The multiplication will show up in another place on the
    page.

    Does this make sense?


    Michael Guest

  2. Similar Questions and Discussions

    1. dynamic pull-down based on another pull-down
      Greetings, is there a tech doc somewhere to show: 1) 2 pull-downs, dynamically loaded from two record sets. first is "State" and next is "City"...
    2. Pull down menu
      HI... i have design simple web site with dreamwear using asp and vbscript i have design simple employee rocord table i have put dynamic pull...
    3. PHP Pull-down menu
      I am new to PHP. I developed a membership program which allows user to add, edit and print membership list. I would like to modify the menu...
    4. Can't pull up old threads
      I'm using Google groups to view this board, and for some reason, I can't pull up a thread I started on 27 September. I also used Outlook Express...
    5. To pull or not to pull
      I shot a roll of 200 ASA at 100. Should I have this pulled one stop, or is there little difference in the outcome? Mark
  3. #2

    Default Re: Pull down and add

    Do you know how to do a SELECT query to get your number out of the database?
    If so, then it's just a matter of some arithmetic operations.

    Ray at work

    "Michael" <michael@nospam.com> wrote in message
    news:07c201c36e4a$2602f870$a001280a@phx.gbl...
    > I know how to enter data to a SQL database from a form.
    >
    > I am making a form where the user inputs some numbers.
    >
    > Than other users login to this other place and I want the
    > number that the person imputed to be shown in a field
    > multipled at a certain price. I am unsure how to pull the
    > numbers down to display them and do the multiplcation.
    > The multiplication will show up in another place on the
    > page.
    >
    > Does this make sense?
    >
    >

    Ray at Guest

  4. #3

    Default RE: Pull down and add

    Hi Michael,

    I agree with Ray. Also, perhaps these articles will help you. Basically,
    you need to do a select statement to retreive the previous user's number
    from the database. Then perform multiplication and assign the results to
    the text property of a text box. Then it will be displayed.

    301216 HOW TO: Populate a DataSet Object from a Database by Using Visual
    Basic
    [url]http://support.microsoft.com/?id=301216[/url]

    301075 HOW TO: Connect to a Database and Run a Command by Using ADO.NET and
    [url]http://support.microsoft.com/?id=301075[/url]

    Does this answer your question?

    Thank you, Mike Moore
    Microsoft, ASP.NET

    This posting is provided "AS IS", with no warranties, and confers no rights.


    --------------------
    > Content-Class: urn:content-classes:message
    > From: "Michael" <michael@nospam.com>
    > Sender: "Michael" <michael@nospam.com>
    > Subject: Pull down and add
    > Date: Fri, 29 Aug 2003 09:25:24 -0700
    > Lines: 14
    > Message-ID: <07c201c36e4a$2602f870$a001280a@phx.gbl>
    > MIME-Version: 1.0
    > Content-Type: text/plain;
    > charset="iso-8859-1"
    > Content-Transfer-Encoding: 7bit
    > X-Newsreader: Microsoft CDO for Windows 2000
    > Thread-Index: AcNuSiYCD0mbxJJNSXuOzrJJqUY2nA==
    > X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
    > Newsgroups: microsoft.public.inetserver.asp.general
    > Path: cpmsftngxa06.phx.gbl
    > Xref: cpmsftngxa06.phx.gbl microsoft.public.inetserver.asp.general:251074
    > NNTP-Posting-Host: TK2MSFTNGXA08 10.40.1.160
    > X-Tomcat-NG: microsoft.public.inetserver.asp.general
    >
    > I know how to enter data to a SQL database from a form.
    >
    > I am making a form where the user inputs some numbers.
    >
    > Than other users login to this other place and I want the
    > number that the person imputed to be shown in a field
    > multipled at a certain price. I am unsure how to pull the
    > numbers down to display them and do the multiplcation.
    > The multiplication will show up in another place on the
    > page.
    >
    > Does this make sense?
    >
    >
    >
    Mike Moore [MSFT] 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