Hello,
linkbutton button event is not firing in Https mode,
How to solve this issue...?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mohammad AmanPosted Nov 23, 2015, 7:34 AM
The reason for the warning is that you’re on an SSL-secured (https protocol) page that is attempting to load non-SSL (http protocol) content. Something to note is that the dialog does not prompt if you’re on an HTTP page and you request HTTPS URL.
Hypertext Transfer Protocol Secure (HTTPS) is an Application Layer protocol that is a combination of HTTP and SSL (Secure Socket Layer) or TLS (Transport Layer Security). HTTPS connections are used for secure transfer of data between the website and the client. Messages are secure since the HTTP message is encrypted via SSL or TLS and then sent on the network/internet. When the message is received by the addressed station, it decrypts the message.
The dialog was changed in IE 8 to encourage users to make the more secure choice by selecting ‘yes’. Selecting ‘yes’ to the IE 7 dialog resulted in showing both secure and non-secure content.
If you want to display mixed content in IE 8 you should click "No". The previous versions of IE asked the user "Do you want to display the secure and non secure content?" You click "Yes" If you want to display mixed content.
Nishant MittalPosted Nov 23, 2015, 6:20 AM
At the top of the Page_load event in Aspx add:
LinkButton1.PostBackUrl = Request.Url.AbsoluteUri;