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

  1. #1

    Default ASP Tutorial

    Can anyone recommend a thorough ASP tutorial?


    Scrappy Guest

  2. Similar Questions and Discussions

    1. Using XML Tutorial
      I have very basic skills with Flash. I can do the usual tweens and fades, but dont have a clue to using the data integration components. I need a...
    2. Help with RSS tutorial
      I am following this tutorial http://www.macromedia.com/devnet/dreamweaver/articles/dw_xsl_rss.html When I paste the rdf link in the XML source box...
    3. Pup Tutorial??
      I've read all the objections to side-bar pop up menus. But I want to make one anyway, just to see how they work. Can someone please refer me to a...
    4. sed tutorial
      Search on Google for 'sed tutorial' http://www.google.com/search?hl=en&lr=&ie=UTF-8&oe=utf-8&q=sed+tutorial& btnG=Google+Search First link is...
    5. WZ2K Tutorial Update - Latest Dynamic Dreamweaver video tutorial
      Hi, The latest Dreamweaver video tutorial has been added this evening, covering the following techniques: Expanding the MySQL database...
  3. #2

    Default Re: ASP Tutorial

    "Scrappy" <celtics@lan-specialist.com> wrote in message
    news:uFP_b.85200$%72.69901@twister.nyroc.rr.com...
    > Can anyone recommend a thorough ASP tutorial?

    [url]http://www.w3schools.com/asp/asp_intro.asp[/url]


    McKirahan Guest

  4. #3

    Default Re: ASP Tutorial

    Here is something I put together about ASP that hopefully might help
    somehow.

    You and others can have access to a database hosted on the Web from any
    location that has a browser with an Internet connection.

    The Web database concept makes sense if you and your people want to do
    work in various locations in or outside the office and still be
    "plugged" in.

    For example you could have employees enter timesheets or have sales reps
    log their contacts. Or perhaps you'd like customers to be able to check
    the status of their orders online without having to call the company.

    If you want a Web database, typically what would happen is that a
    database such as Access or MySQL (basically just consisting of tables)
    would be put on the Web.

    Then "dynamic" Web pages (actually ASP pages which include VBScript,
    HTML, and/or JavaScript) would be created acting like the old desktop
    database's queries, forms, and reports to access the database - all
    hosted on a Web Server.

    Dynamic Web pages are similar in many ways to regular HTML pages. But
    they are "live" because the user can read from and write to information
    in the database. An example where you can login and add, edit, or view
    fictional customers and invoices is at
    [url]http://www.bullschmidt.com/login.asp[/url]

    Not all Web hosts will handle dynamic Web pages but many do. The Web
    hosts that can handle ASP pages usually have a Windows 2000 or Windows
    2003 operating system running an IIS Web server.

    Here are a few good ASP sites:
    o ASP101 Samples - [url]http://www.asp101.com/samples[/url]
    o W3Schools ASP Tutorial - [url]http://www.w3schools.com/asp[/url]
    o Microsoft VBScript Language Reference -
    [url]http://msdn.microsoft.com/scripting/default.htm?/scripting/VBScript/doc/[/url]
    vbscripttoc.htm

    And the following newsgroup is good:
    microsoft.public.inetserver.asp.general

    Or for a "quick and dirty" generic ASP open source solution to putting
    databases on the Web that just requires setting up a configuration page
    for each table or query and uploading the database to the Web as long as
    there is an autonumber field in each table (and you'll probably also
    separately want to create login capabilities), perhaps try something
    like this:
    GenericDB by Eli Robillard
    [url]http://www.genericdb.com[/url] and then click on the Tips link to see an
    example

    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