If the page is define din Module.conifg, use isSecure attribute.
<add name="Register" blockTypeId="22" isSecure="true" />
Otherwise you can set base.IsSecure in the page constructor.
public partial class MyPage : DSCPage {
public MyPage() {
base.IsSecure = true;
}
DotShoppingCart Staff
|