Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经开发了一个基于 Windows 的应用程序和 SQL Server 2008 作为后端,我有一个登录表单,是否可以检索我在另一个表单上登录的用户名?请帮忙吗?可能吗?
您可以通过检查环境变量来检索当前登录用户的名称USERNAME。但是,该进程可能在某些其他用户凭据下运行。
USERNAME
但是,如果您只想使用这些凭据做某事,则可以使用System.Net.CredentialCache.DefaultCredentialsor System.Net.CredentialCache.DefaultNetworkCredentials。
System.Net.CredentialCache.DefaultCredentials
System.Net.CredentialCache.DefaultNetworkCredentials
你的两种形式在不同的过程中?如果是这样,也许您需要使用一些进程间通信机制来获取用户名。