This topic is locked

Password Mask

5/12/2004 2:35:25 PM
ASPRunnerPro General questions
author

I am trying to allow users to input certian information with a password mask into an access database, I have set the pirticular fields in the database to have a password mask, however when I use ASPRunner to build the web app to interact with the database when the information is entered it is not masked. I have been pouring through the source code, however I have been unable to figure out what needs to be edited for this to work properly. Is there any way to do this?
Thanks,

Josh

Sergey Kornilov admin 5/13/2004

Josh,
please open file C:\Program files\ASPRunner\source\include\aspfunctions.asp in any text editor and find the following code snippet:

Case EDIT_FORMAT_PASSWORD   

      BuildEditControl = "<input type=text type=password ...


you need to change it this way ( remove type=text)

Case EDIT_FORMAT_PASSWORD   

      BuildEditControl = "<input type=password ...


Rebuild ASP code after that.
Thank you for pointing me to this!

500115 5/14/2004

Thank you for providing such quick support and such an excelent product.