开发者

Upload file on SSL Page

开发者 https://www.devze.com 2022-12-08 14:57 出处:网络
I have an html input control () on an aspx page that is secured via SSL.Just as a sanity check I want to make sure that the upload of the file on this page is also encrypted along with the re开发者_开

I have an html input control () on an aspx page that is secured via SSL. Just as a sanity check I want to make sure that the upload of the file on this page is also encrypted along with the re开发者_开发问答st of the page when the postback occurs and the request is sent to the server.


There is no reason to do this if your server is configured properly. But in your Page_Load...

If Not Request.IsSecureConnection
    'Whatever
End If
0

精彩评论

暂无评论...
验证码 换一张
取 消