user authentication

  • Thread starter Thread starter Alan Zhong
  • Start date Start date
A

Alan Zhong

i have a menu program, that does the user login, then lets the user to
click on a link and executes other programs.
how can i pass the user information from the menu program to the newly
created process?
i really want to make the menu a stand alone program.
thankx a lot.
 
You can use ProcessStartInfo.Arguments property to set the arguments
that you want to pass to the new process. Ofcourse the newly created
process must have the logic to process command line arguments for this
to work.

Otherwise you will have to use some Out-of-band techniques like
registry, files etc. to pass that info.

Sijin Joseph
http://www.indiangeek.net
http://weblogs.asp.net/sjoseph
 
Back
Top