what technology to use?

Ask a Question related to ASP, Design and Development.

  1. #1

    Default what technology to use?

    May be a little off topic but I need ideas. I have ASP that provides each
    manager with a report of their own employees. I was going to enhance this to
    let them maintain the data through another ASP but they are very hesitant to
    do this on the web. All of the managers are also civil engineers and like to
    use Excel for everything. They have requested something to allow them to get
    their employee data into Excel, edit it off-line and return it to the
    database later. Excel 2000 can open an html report from my ASP and edit it.
    But how do I return the data to the backend Access database?

    thanks
    LJB


    ljb Guest

  2. Similar Questions and Discussions

    1. Compatability with a U3 smart technology
      Is it possible to add Contribute to a USB sflash drive that has U3 technology and if so how do users find it works?
    2. What MM technology is this?
      At MM's URL http://spectra15.macromedia.com/findaclass.cfm The table below is sortable w/o server intervention. Is this Rich Forms handler using...
    3. bio / medical technology
      Bah, go fuck yourself. Damn parasite, u are just an unnessesary middle man. And who in the end must pay for u buying those domains to sell them for...
    4. WSE 2.0 Technology Preview Available
      The WSE team would like to announce the Technology Preview of the Web Services Enhancements 2.0 for Microsoft .NET. You can download the WSE 2.0...
    5. java technology
      How do I activate on xp--anybody know?
  3. #2

    Default Re: what technology to use?

    You can connect to an Excel spreadsheet with ADO, and read/write records
    from/to your database. I did a very similar project recently, and it worked
    well. All you need can be found in msdn.

    "ljb" <.> wrote in message news:urehXXIeDHA.2756@TK2MSFTNGP11.phx.gbl...
    > May be a little off topic but I need ideas. I have ASP that provides each
    > manager with a report of their own employees. I was going to enhance this
    to
    > let them maintain the data through another ASP but they are very hesitant
    to
    > do this on the web. All of the managers are also civil engineers and like
    to
    > use Excel for everything. They have requested something to allow them to
    get
    > their employee data into Excel, edit it off-line and return it to the
    > database later. Excel 2000 can open an html report from my ASP and edit
    it.
    > But how do I return the data to the backend Access database?
    >
    > thanks
    > LJB
    >
    >

    Mike Florio Guest

  4. #3

    Default Re: what technology to use?

    Why execute three or four steps when one will do. I would persuade your
    civil engineers they run the risk of corrupting the data by downloading the
    data to Excel, making changes, and then uploading back to Access. What
    happens if the uploading fails because they introduced bad data in a field
    and they will. I will guarantee it. You can code out where the data is
    returned in a table like window where they have the opportunity to delete,
    add, edit or whatever you allow them to do.

    I found a really neat program at [url]www.planet-source-code.com;[/url] it allows to
    call up data into a table like structure, but with flair. It is simple
    enough, even civil engineers can operate........lol. You can even set it up
    where they only see their employees and not their fellow engineers, but they
    would have to use a login to do so. This can also be maintained inside the
    database and the login would bounce what they type to the data in the
    database.

    If you email me at [email]glvaught@hotmail.com[/email], I will email the folder to you with
    the original files; just keep any original author data within the ASP pages.

    G. Vaught



    "ljb" <.> wrote in message news:urehXXIeDHA.2756@TK2MSFTNGP11.phx.gbl...
    > May be a little off topic but I need ideas. I have ASP that provides each
    > manager with a report of their own employees. I was going to enhance this
    to
    > let them maintain the data through another ASP but they are very hesitant
    to
    > do this on the web. All of the managers are also civil engineers and like
    to
    > use Excel for everything. They have requested something to allow them to
    get
    > their employee data into Excel, edit it off-line and return it to the
    > database later. Excel 2000 can open an html report from my ASP and edit
    it.
    > But how do I return the data to the backend Access database?
    >
    > thanks
    > LJB
    >
    >

    GVaught Guest

  5. #4

    Default Re: what technology to use?

    I agree with doing it with out relying on Excel on the client.
    You need to resume control of the data and control all business rules on the
    server side. The engineers will always change and training will be required
    for their duties. You will reduce the expense of training by porting your
    solution to a web presence. Most employees today use the internet at home
    and self train to using web pages.

    I build solutions that automate engineer's mastery everyday.
    I push for a work environment without excel and access on the desktop. Most
    office personal see this as a threat. I believe these employees use these
    tools because the systems they have access to are failing to provide the
    information they need.


    -dlbjr

    invariable unerring alien


    dlbjr Guest

  6. #5

    Default Re: what technology to use?

    I agree with everyone's encouragement to keep it a web app. It is really the
    only way to have "complete" control over what gets done to the data. Its
    difficult to take an end user developed application and wrench control away
    from the user to make it an enterprise application. If the application is to
    be shared everyone must sing the same tune.

    thanks
    LJB


    ljb 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