Authentication methods
-
hi, i need to know is there any authentication methods available for VB.NET OR C#.NET WINDOWS APPLICATION.if so let me know the authentication methods and its way of usage in WINDOWS APPLICATION. thnx in advance,
zari
Authenticating what ? I assume input ? In which case, you have things like masked text controls, you have validators, and you can write your own code to validate input any way you like.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Authenticating what ? I assume input ? In which case, you have things like masked text controls, you have validators, and you can write your own code to validate input any way you like.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
There's nothing built in, no. You'd have to build your own permissions system, and it's not as secure as a web app, because anyone who has your exe can decompile it and remove the permissions checks. They are also more likely to have access to the database that tracks who has permissions to what.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )