Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. Viewing password

Viewing password

Scheduled Pinned Locked Moved ASP.NET
question
13 Posts 5 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Offline
    L Offline
    larsp777
    wrote on last edited by
    #1

    I have made a login-page and have users. Is there a way to see what password the user have? It doesn´t seem to show when you click "manage users".

    F B 2 Replies Last reply
    0
    • L larsp777

      I have made a login-page and have users. Is there a way to see what password the user have? It doesn´t seem to show when you click "manage users".

      F Offline
      F Offline
      Forbiddenx
      wrote on last edited by
      #2

      There a lot of methods to using login.. Some use active dr, some can be stored in the database.. I am sure you can get their password but a better question is should you ? I would say prob not, instead build a way for them to reset it and you too reset it... best not to care what their password is, as long as follows your security rules.

      =)

      1 Reply Last reply
      0
      • L larsp777

        I have made a login-page and have users. Is there a way to see what password the user have? It doesn´t seem to show when you click "manage users".

        B Offline
        B Offline
        Boipelo
        wrote on last edited by
        #3

        You should never be able to see users password, if you do, so will others do. Have the rights to reset as suggested. Anyways, why do you want to see them?

        I remain joe!

        L 1 Reply Last reply
        0
        • B Boipelo

          You should never be able to see users password, if you do, so will others do. Have the rights to reset as suggested. Anyways, why do you want to see them?

          I remain joe!

          L Offline
          L Offline
          larsp777
          wrote on last edited by
          #4

          The thing is that I am teaching a class and would like the students to be able to see what password they have chosen. Then again I only have to make sure that they write the passwords they choose.

          B D L 3 Replies Last reply
          0
          • L larsp777

            The thing is that I am teaching a class and would like the students to be able to see what password they have chosen. Then again I only have to make sure that they write the passwords they choose.

            B Offline
            B Offline
            Boipelo
            wrote on last edited by
            #5

            Use a select statement and bind to the data to Grid... I still believe that seing passwords is wrong, people have to memorise their passwords, have an option to reset it and a forgot password option... I always encrypt my passwords - seing them will not make a difference. Hope that you are sorted.

            I remain joe!

            1 Reply Last reply
            0
            • L larsp777

              The thing is that I am teaching a class and would like the students to be able to see what password they have chosen. Then again I only have to make sure that they write the passwords they choose.

              D Offline
              D Offline
              Deflinek
              wrote on last edited by
              #6

              Please don't do that :) I don't know what age your students are but in my opinion even the youngest kids should know that their passwords are personal and should not be shared nor written. If I recall correctly the asp.net application by default stores passwords as hashes, so without altering configuration you won't be able to read them. Like the others suggested, please just implement reset password. :)

              -- "My software never has bugs. It just develops random features."

              L 1 Reply Last reply
              0
              • D Deflinek

                Please don't do that :) I don't know what age your students are but in my opinion even the youngest kids should know that their passwords are personal and should not be shared nor written. If I recall correctly the asp.net application by default stores passwords as hashes, so without altering configuration you won't be able to read them. Like the others suggested, please just implement reset password. :)

                -- "My software never has bugs. It just develops random features."

                L Offline
                L Offline
                larsp777
                wrote on last edited by
                #7

                My students are about 16-20 years. I think I will take your advice :) Thanks!

                1 Reply Last reply
                0
                • L larsp777

                  The thing is that I am teaching a class and would like the students to be able to see what password they have chosen. Then again I only have to make sure that they write the passwords they choose.

                  L Offline
                  L Offline
                  Lost User
                  wrote on last edited by
                  #8

                  larsp777 wrote:

                  The thing is that I am teaching a class

                  Teaching them the wrong things is really not helping. Maybe you should take some more classes first.

                  Veni, vidi, abiit domum

                  L 1 Reply Last reply
                  0
                  • L Lost User

                    larsp777 wrote:

                    The thing is that I am teaching a class

                    Teaching them the wrong things is really not helping. Maybe you should take some more classes first.

                    Veni, vidi, abiit domum

                    L Offline
                    L Offline
                    larsp777
                    wrote on last edited by
                    #9

                    Richard MacCutchan wrote:

                    Teaching them the wrong things is really not helping. Maybe you should take some more classes first.

                    What do you mean are the wrong things?

                    L 1 Reply Last reply
                    0
                    • L larsp777

                      Richard MacCutchan wrote:

                      Teaching them the wrong things is really not helping. Maybe you should take some more classes first.

                      What do you mean are the wrong things?

                      L Offline
                      L Offline
                      Lost User
                      wrote on last edited by
                      #10

                      larsp777 wrote:

                      The thing is that I am teaching a class and would like the students to be able to see what password they have chosen.

                      Need I say more?

                      Veni, vidi, abiit domum

                      L 1 Reply Last reply
                      0
                      • L Lost User

                        larsp777 wrote:

                        The thing is that I am teaching a class and would like the students to be able to see what password they have chosen.

                        Need I say more?

                        Veni, vidi, abiit domum

                        L Offline
                        L Offline
                        larsp777
                        wrote on last edited by
                        #11

                        Richard MacCutchan wrote:

                        The thing is that I am teaching a class and would like the students to be able to see what password they have chosen.

                        Need I say more?

                        Well, although I´m not a superexpert in the subject I think it´s a valid question. The answer seem not to be a simple one either given the answers. What I wanted to know was if you in a simple manor could view the passwords if the students forgot them. I really don't know what you mean by "teaching them the wrong things." If there is a way to view the passwords if you are administrator and I show them that then it is really a question of policy and not a technical one. So how would it help me to take a class?

                        L 1 Reply Last reply
                        0
                        • L larsp777

                          Richard MacCutchan wrote:

                          The thing is that I am teaching a class and would like the students to be able to see what password they have chosen.

                          Need I say more?

                          Well, although I´m not a superexpert in the subject I think it´s a valid question. The answer seem not to be a simple one either given the answers. What I wanted to know was if you in a simple manor could view the passwords if the students forgot them. I really don't know what you mean by "teaching them the wrong things." If there is a way to view the passwords if you are administrator and I show them that then it is really a question of policy and not a technical one. So how would it help me to take a class?

                          L Offline
                          L Offline
                          Lost User
                          wrote on last edited by
                          #12

                          If there was a way to view passwords on any system, then that system's security is compromised. As a teacher of IT you really should understand that.

                          Veni, vidi, abiit domum

                          L 1 Reply Last reply
                          0
                          • L Lost User

                            If there was a way to view passwords on any system, then that system's security is compromised. As a teacher of IT you really should understand that.

                            Veni, vidi, abiit domum

                            L Offline
                            L Offline
                            larsp777
                            wrote on last edited by
                            #13

                            Richard MacCutchan wrote:

                            If there was a way to view passwords on any system, then that system's security is compromised. As a teacher of IT you really should understand that.

                            And I should take a class to learn that?

                            1 Reply Last reply
                            0
                            Reply
                            • Reply as topic
                            Log in to reply
                            • Oldest to Newest
                            • Newest to Oldest
                            • Most Votes


                            • Login

                            • Don't have an account? Register

                            • Login or register to search.
                            • First post
                              Last post
                            0
                            • Categories
                            • Recent
                            • Tags
                            • Popular
                            • World
                            • Users
                            • Groups