<% Option Explicit %> 華南期貨-線上預約開戶
  線上預約開戶
 

 

謝謝您使用華南期貨網線上預約開戶。
若您是舊客戶,請至首頁的表格下載,去下載網路交易同意書,再寄給您的營業員即可。
若您是新客戶,完成
線上預約開戶之後,我們將會儘快電話與您聯絡,再到營業員處辦理開戶填寫相關資料。

••••••••••••••••••••••••••••••••••••••••• <% Dim maddress,mconntime,memail,mname,msex,mtelh,mtelo,m_stmp,mtype,mpersonalinfo '顯示輸入欄或儲存 maddress=trim(request("maddress")) mconntime=request("mconntime") memail=trim(request("memail")) mname=trim(request("mname")) msex=request("msex") mtelh=trim(request("mtelh")) mtelo=trim(request("mtelo")) m_stmp=trim(request("mmessage")) mtype=trim(request("mtype")) mpersonalinfo=trim(request("mpersonalinfo")) if mpersonalinfo="on" then mpersonalinfo="Yes" end if Dim mailbody mailbody = "姓名:" & mname & "
" & _ "預約時間:" & now() & "
" & _ "開戶類型:" & mtype & "
" & _ "性別:" & msex & "
" & _ "電話(H):" & mtelh & "
" & _ "電話(O):" & mtelo & "
" & _ "Email:" & memail & "
" & _ "通訊住址:" & maddress & "
" & _ "聯絡時間:" & mconntime & "
" & _ "留言:" & m_stmp & "
" & _ "已詳閱個資告知事項:" & mpersonalinfo if mname <> "" and (mtelh<>"" or mtelo<>"") then 'sql = "select top 1 mno from ft_deal_open with(nolock) order by mno desc" 'rs.open sql,conn,3,3 'if not rs.eof then 'no=rs(0)+1 'no=string(5-len(no),"0")&no 'else 'no="00001" 'end if 'rs.close 'conn.execute "insert into ft_deal_open (mno,mname,msex,mtelh,mtelo,memail,maddress,mmessage,mdate,mconntime,mtype)" & _ ' "values ('"&no&"','"&mname&"','"&msex&"','"&mtelh&"','"&mtelo&"','"&memail&"','"&maddress&"','"&mmessage&"','"&mdate&"','"&mconntime&"','"&mtype&"')" Call SendMail(mailbody) response.write "" else response.write "" end if %>

請務必填寫真實資料,我們將儘速處理並與您聯絡,謝謝!
姓名
預約時間 <% =now() %> (實際預約時間以按下送出為準)
開戶類型
(三選一)
1. 僅開國內期貨戶(僅交易台灣期交所商品)
2. 加開國外期貨戶(原本已有國內期貨帳戶,欲交易外國期交所商品)
3. 新客戶,國內與國外期貨同時開戶
性別 先生 女士
電話(H)
電話(O)
Email
通訊住址
聯絡時間 上午 下午 晚上 立即聯絡
留言
本人已詳細審閱【華南期貨】依據個人資料保護法第八條規範所提出之【蒐集個人資料時之告知當事人事項】。
<% Sub SendMail(body) Dim oCDO Dim sCfg Set oCDO = Server.CreateObject("CDO.Message") sCfg = "http://schemas.microsoft.com/cdo/configuration/" With oCDO .Sender = "SystemAdmin" .From = "SystemAdmin" .To = "6886@entrust.com.tw" .CC = "6963@entrust.com.tw;7687@entrust.com.tw;785@entrust.com.tw" .Fields("urn:schemas:mailheader:X-Priority") = 1 ' Priority = PriorityUrgent 高優先順序 '.Fields("urn:schemas:mailheader:return-receipt-to") = "@entrust.com.tw" ' 要求讀取回條 '.Fields("urn:schemas:httpmail:importance") = 2 ' Importance = High '.Fields("urn:schemas:httpmail:priority") = 1 ' Priority = PriorityUrgent .Fields.Update ' 更新欄位 .Subject = "預約開戶資料" '.TextBody = "ORZ" ' Text 文字格式信件內容 ' 或 HTML 網頁格式信件內容 .HTMLBody = "" & _ "" & body & _ "" & _ "" '.AddAttachment "" ' 附加檔案 '.CC = "" ' 副本 '.BCC = "" ' 密件副本 .Configuration(sCfg & "sendusing") = 2 ' Sendusing = SendUsingPort .Configuration(sCfg & "smtpserver") = "exchsrv.entrust.com.tw" ' SMTP Server .Configuration(sCfg & "smtpserverport") = 25 ' SMTP Server Port ( 預設即為 25 ) ' SMTP Server 如需登錄 , 則需設定 UserName / Password .Configuration(sCfg & "sendusername") = "6963" ' Send User Name .Configuration(sCfg & "sendpassword") = "6963" ' Send Password .Configuration.Fields.Update ' 更新 (欄位) 組態 ' .DSNOptions = 4 ' 回傳信件傳送狀態 ' cdoDSNDefault = 0 , DSN commands are issued. ' cdoDSNDelay = 8 , Return a DSN if delivery is delayed. ' cdoDSNFailure = 2 , Return a DSN if delivery fails. ' cdoDSNNever = 1 , No DSNs are issued. ' cdoDSNSuccess = 4 , Return a DSN if delivery succeeds. ' cdoDSNSuccessFailOrDelay = 14 ,Return a DSN if delivery succeeds, fails, or is delayed. .Send '傳送 End With Set oCDO = Nothing End Sub %>