根据客户或者账户的风险等级,每年定期审核存量账户的客户基本信息,对高风险等级客户应采取强化识别措施,至少每()对客户基本信息进行一次审核,及时更新客户资料。对中、低风险等级客户身份基本信息,应每()审核一次。
A. 年;半年
B. 半年;年
C. 季;年
D. 年;季
You are working on an existing Web site. You need to secure the Web site by redirecting all users to the logon page, Login.aspx. After logging on, users must be sent back to the page that they originally requested. Which code segment should you use? ()
A. In the Web.config file: On each page in the Web site: Protected Sub Page_Load(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Load FormsAuthentication.Initialize() End Sub
B. On each page in the Web site: Protected Sub Page_Load(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Load FormsAuthentication RedirectToLoginPage("login.aspx") End Sub
C. On each page in the Web site: Protected Sub Page_Load(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Load Response.Redirect("login.aspx") End Sub
D. In the Web.config file: