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.
我正在一个网站上工作,我通过 asp.net 登录控件有一个用户名和密码框,我希望当您在控件中单击登录时,它会通过我的安全页面发送登录请求。我已经进行了单点登录工作,我只想让登录数据通过 SSL 遍历。
任何人都知道这是否可能以及如何做到这一点?
使用 SSL 的决定是由 WebRequest 类根据给定的 URI 做出的。如果 URI 以“https:”开头,则使用 SSL;如果 URI 以“http:”开头,则使用未加密的连接。