how to do session like thing in windows form application to hold the current user in each page where each page can hold that particular user's details who logged in at that time...
how to do session like thing in windows form application to hold the current user.
Collapse
X
-
Windows Form app are stateful application, therefore maintaince of state is not required. If you want to share information across forms then you can have a static class/ variables/ for the same.Comment
Comment