from simple to usefull - how to?

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

  1. #1

    Default from simple to usefull - how to?

    I just started messing with asp/ado and have already worked through some
    issues with the help of this newsgroup. Thank you all so far for all the
    help!

    So far I just have one asp page that contians a form to input one parameter
    for a query/report. The same asp process the query. The form posts to
    itself. Well now that I have that working and of course have all kinds of
    other variations that I want to do how do I go about organizing this? I am
    used to using VBA with access forms. So lets say I want to give a user the
    option to run several different reports (one at a time... not all together)
    from the same page? Do I A) make on page with simple links (a hrefs) to a
    seperate page for each report. Each of these seperate pages with there own
    forms that post to themselves? OR B) make on page that is divided into
    sections where the user can launch any of the reports from that page? in
    this case would I use one form and post all to the same asp page for
    processing somehow passing along with the request a variable to indicate to
    the asp file which report to create? Or just use seperate <form> elements
    for each that post to seperate asp files, 1 for each report type?

    I think what I'm looking to do first is have the top section of the page
    contain all report options and their respective input parameter form
    elements. My initial reports I'm doing this with only take one parameter so
    space is not an issue. Plus I'm only talking about 3 or 4 different reports.
    I would want the top section to always be there even when displaying results
    from a report. The report results would display underneath this top 'report
    options' section. So the user could easily run the same report agian maybe
    with different parameters or one of the other reports at any time. Both from
    initial page load and from the results page of any report.

    Well I'm blabbing now. Really I'm looking for some experienced persons to
    suggest options and which ones are good for what etc.. Coming from access
    forms to IE/asp my whole concept of navigation has to be adapted to this.
    Can I even send a parameter along with a button click on an html form? The
    examples I've seen thus far only send what is in a text input field element.
    Can I give an input element of type 'submit' and name attibute and send a
    value with it for processing?

    sorry for the scatterbrain post. Anyone please feel free to comment on any
    of the several ?'s & issues I have blabbed about.


    djc Guest

  2. Similar Questions and Discussions

    1. Need Simple Answer to Simple Contribute/Firefox question
      Hello all; I've tried the Adobe help in CS3, tech support, phone support, this forum, other forums, Mozilla, and nowhere can I get a straight...
    2. Really Simple
      Hi Can someone look at this code for me.... For Some reason when I add any more: <INPUT NAME = \"postcode\" TYPE = \"HIDDEN\" VALUE=\"$postcode\">...
    3. Usefull Links
      just have a look on my website. http://earnmoneytoday.0catch.com Thank you
    4. Is libpthread.so.0 link usefull ?
      Hi all. IDS 9.21 running fine on Linux RedHat 7.3 box. Now, I try to install a test instance running IDS 9.40 on the same box. oninit -i fails...
    5. A simple problem with a really simple form
      Hi there, I'm having a problem with designing a very small form in Dreamweaver. Its just a login form with username and password textfields - the...
  3. #2

    Default Re: from simple to usefull - how to?

    Well just to look at something to give you ideas about a Web page where
    you can change the criteria for reports and choose a report you can go
    to [url]www.bullschmidt.com/login.asp[/url] and then click on the Invoices Report
    button...

    Best regards,
    J. Paul Schmidt, Freelance ASP Web Developer
    [url]http://www.Bullschmidt.com[/url]
    ASP Design Tips, ASP Web Database Demo, Free 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