I was hoping to do something like so:
Code: Select all
#if($Request.IsSecureConnection)
<p>hello world!</p>
#endif
Code: Select all
#if($Request.IsSecureConnection)
<p>hello world!</p>
#endif
Is this code is causing some problem or you just want to know some other way to do thisIf there's a better way to do something like this in a scriptlet, please let me know.Code: Select all
#if($Request.IsSecureConnection) <p>hello world!</p> #endif