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

  1. #1

    Default Design Issue

    Hi again everyone:

    I would like to have a form field exist on two forms at the same time, - if
    it is possible.

    Basically, I am trying to create a login form that allows the user the
    opportunity to see if the "handle" that he has chosen already eixsts or not.
    This means that my screen would have 2 buttons. The first button triggers
    the code to check the database for the handle, while the second button would
    go and perform the actual registration once it has been determined that the
    user has selected a unique handle.

    Any suggestions. I got a feeling that there is more than 1 way to go about
    doing this

    My feeling was to have the script contain two parts. The first part simply
    checks the handle. If the handle is unique then all the information that
    was captured in the first form then gets sent to the next form as hidden
    fields. The problem that I see with this approach is that it might be
    possible to "capture" username and password information by viewing the
    source (i.e. username and password are fields that are on the same form as
    the handle).

    Terry



    Terry Murray Guest

  2. Similar Questions and Discussions

    1. dll hell design issue
      I have some questions about the proper use of dll's in asp applications. The situation is like this: We have a COM dll that uses a few regular...
    2. Web design issue- please help
      Hi All, I am an intermediate level of web designer. I would like you to give me some advice on web design issues; i.e. if someone needs to...
    3. Help with design issue
      Hi once again, I have been asked to add a feature that allows a person to add content to a site via a control panel. This control panel is...
    4. Is this a NET issue or just bad web design
      Because in my .NET implementations I do not run into this. Yes granted I don't use the various technologies that Microsoft does but in my book using...
    5. Caching Design Issue
      I am creating a portal that uses UserControls as each "portlet". Each of these UserControls is autonomous in the sense that whether or not they are...
  3. #2

    Default Re: Design Issue

    Make 2 forms. When the user checks to see if the handle exists already the
    form will load the same page (references itself) but put a hidden field in
    the first form so that when the page reloads it checks to see if the user
    activated that form (the hidden field will trigger it) and then you can
    execute your SQL statement to search and write back to the page. The page
    will look exactly the same, except the second time it loads it will know if
    the handle is chosen already and can display a message to the effect.

    Hope this helps

    --
    Joe Resudek
    Frontier New Media
    225 Crummer Lane
    Reno, NV 89509
    (775) 824-4040
    (775) 824-4044 fax
    [url]http://www.thefrontiergroup.com[/url]
    "Terry Murray" <tgmurray@rogers.com> wrote in message
    news:IvfYa.116474$rsJ.49025@news04.bloor.is.net.ca ble.rogers.com...
    > Hi again everyone:
    >
    > I would like to have a form field exist on two forms at the same time, -
    if
    > it is possible.
    >
    > Basically, I am trying to create a login form that allows the user the
    > opportunity to see if the "handle" that he has chosen already eixsts or
    not.
    > This means that my screen would have 2 buttons. The first button triggers
    > the code to check the database for the handle, while the second button
    would
    > go and perform the actual registration once it has been determined that
    the
    > user has selected a unique handle.
    >
    > Any suggestions. I got a feeling that there is more than 1 way to go about
    > doing this
    >
    > My feeling was to have the script contain two parts. The first part
    simply
    > checks the handle. If the handle is unique then all the information that
    > was captured in the first form then gets sent to the next form as hidden
    > fields. The problem that I see with this approach is that it might be
    > possible to "capture" username and password information by viewing the
    > source (i.e. username and password are fields that are on the same form as
    > the handle).
    >
    > Terry
    >
    >
    >

    Joe Resudek 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