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.
是否有一些代码可以通过 webconfig 加密表单数据?某种代码或在 global.asax 中?我目前正在为我的网站开发登录,我不想使用 SSL。有什么办法可以解决我的问题吗?
不,该web.config文件仅控制服务器的行为方式。客户端和服务器之间需要依赖 HTTP 协议。
web.config
这正是 HTTPS(即 SSL)存在的原因。如果您需要在数据从客户端浏览器传输到 Web 服务器时对其进行加密,则必须使用 HTTPS。没有捷径。