Needing Help with a webpage

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Needing Help with a webpage

    Hi

    Some action should be done by user (such as button click)
    then only we know whether use has read it or not


    Ravikanth[MVP]

    >-----Original Message-----
    >Could someone please help me get started? I do not have
    >any experience with .NET or ASP. My website is on a
    2000
    >Server and I'm using Sharepoint - no big deal. I do
    have
    >two 2003 servers. All my clients are XP professional,
    >except for a couple, which are 2000. I am wanting to
    >create something that will do two things, first it will
    >keep a webpage open until it is read, second it will log
    >that users user name so we can keep a record of who
    reads
    >it. Therefore, that page won't bother the user if
    he/she
    >has allready read it. Does this make since?
    >
    >Hopeing someone will help...
    >
    >George
    >.
    >
    Ravikanth[MVP] Guest

  2. Similar Questions and Discussions

    1. Needing Flash 7
      I am installing a program which requires Flash 7.0. I can't seem to find it on the website here. Can anyone help me?
    2. needing help with shockwave 10
      :confused; I have been trying to get this program working for about 3 days now. I have tried the link from the game site, and the standalone...
    3. needing help - constructor overloading
      Hello everybody, I'm developing a XML web service in VB, and I'd like to overload the constructor to customize the service: Private...
    4. newbie needing help
      Guys, I've been learning for two weeks now, so bear with me :-) I'd like to know how to echo a formatted table using the results from three...
    5. Needing help with results page
      I'm taking a class in Application Development with Dreamweaver MX2004 using ASP.NET. I'm working on a project for the class where I'm creating an...
  3. #2

    Default Re: Needing Help with a webpage

    Hi George,

    Again, there is NO WAY to prevent the user from closing ANY application that
    is being run on the user's machine. A browser is an application running on
    the user's machine. The web page is just a document that the browser
    downloads. No sane person would write an application that the user can't
    control, or at least terminate. Nobody would buy it. People generally like
    to have the last word as to what is allowed to run on their machines and
    when it runs and stops running.

    In order to collect information from a user, there are several components
    that are necessary:

    1. A method for inputting the data, such as a form (unless the data is
    already available, such as browser info)
    2. A method for collecting the data on the server, such as a form handler
    application (server-side app)
    3. A Storage mechanism on the server, such as a file or database.

    I'm not sure what youre describing as a "JAVA application" but it sounds
    like an applet. If you obtained this from a third-party, you will not be
    able to modify it other than by whatever parameters it provides.

    As for an "easier way" using ASP.Net, well, you would have to either (1) BE
    a .Net programmer, or (2) HIRE a .Net programmer to write it for you. You
    may be able to find some third-party .Net components that do what you're
    describing; it's not a complicated scenario. However, it is fairly
    specialized, and a custom solution sounds like your best approach.

    But, bottom line is, you will need some application that has both a
    server-side and a client-side aspect to it (such as an ASP.Net app), to
    collect information on the client browser, and save it to the server.

    --
    HTH,

    Kevin Spencer
    Microsoft MVP
    ..Net Developer
    [url]http://www.takempis.com[/url]
    Complex things are made up of
    lots of simple things.

    "George Jackson" <jacksonbilly@hotmail.com> wrote in message
    news:OAY5qEpWDHA.1280@tk2msftngp13.phx.gbl...
    > There isn't away to disable the close button at the top of the browser?
    >
    > As far as needing help, I have a JAVA application that would do good for
    > me, it provides a user name, email, and comment, and then emails it to
    > whoever. Is there a way to make it mandatory to fill that out and use
    > the command button on the java app as the exit button?
    >
    > Or is there an easier way to do this using ASP.NET? I keep hearing
    > server side application - what does this mean? Can't I do this from my
    > computer, which is on the same domain? And if so, what is the download
    > that I need to work with ASP.NET?
    >
    > Thanks in advance,
    >
    >
    > *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    > Don't just participate in USENET...get rewarded for it!

    Kevin Spencer 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