Form for Windows Authentication

  • Thread starter Thread starter Luigi Z
  • Start date Start date
L

Luigi Z

Hi all,
in my WinForm (C# 2.0) application, I need to create something that consent
to run the .exe only for user in an intranet.
Something that present 2 textbox, username and password, with username
already filled with the name of the user, which then insert its password, and
then the application starts.
Has anyone ideas to create this?

Thanks in advance.
 
If you are doing your Win Form app with VS2008, go to project properties and
select "Services" tab, check the check box of "Enable client application
services". For more information on this, click "Learn more about client
application services" link, or search the net for "client application
services".

Of course you can re-invent the wheel (doing your own user loging
in/authentication) as it has been re-invented so many times.
 
Norman Yuan said:
If you are doing your Win Form app with VS2008, go to project properties and
select "Services" tab, check the check box of "Enable client application
services". For more information on this, click "Learn more about client
application services" link, or search the net for "client application
services".

Of course you can re-invent the wheel (doing your own user loging
in/authentication) as it has been re-invented so many times.

Thanks for response Norman; unfortunately I'm using Visual Studio 2005 (C#
2.0).
I can get it all the same?

Luigi
 
Back
Top