1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
|
" codeBody "
function Print_RefCodeByAgencyID (agencyid, org_agency_id, branchid, PrintTypeID)
schemerige TableField
als agencyid = „2651“ toen
print_ex_url= " https:// " & domainname & „/eServices/Secure/eBond/Print_RefCodes.asp? PrintTypeID=2“
vastgestelde Cmd_PrintBondMarket_RefNo=Server.CreateObject („ADODB.Command“)
met Cmd_PrintBondMarket_RefNo
.ActiveConnection = dbsecurecon
.CommandText = „up_GetWebCustomziedRpt_agent“
.CommandType = adCmdStoredProc
. .CreateParameter van Parameters.Append („@agencyID“, adVarChar, adParamInput, 10, agencyid)
. .CreateParameter van Parameters.Append („@ReportTypeID“, adinteger, adParamInput, 1)
. .CreateParameter van Parameters.Append („@ReportBegDate“, adDate, adParamInput, „01/01/2010“)
. .CreateParameter van Parameters.Append („@ReportToDate“, adDate, adParamInput, „01/30/2010“)
. Voer uit ()
eind met
ipagesize=10
als request.form („cmdbondnavbutton“) = "" toen
ipagecurrent=1
anders
ipagecurrent=cint (request.form („cmdbondnavbutton“))
beëindig als
plaats Rs_PrintBondMarket_RefNo=Server.CreateObject („Adodb.RecordSet“)
Rs_PrintBondMarket_RefNo.PageSize=ipagesize
Rs_PrintBondMarket_RefNo.CursorLocation=aduseClient
Rs_PrintBondMarket_RefNo.CacheSize=ipagesize
Rs_PrintBondMarket_RefNo.Open Cmd_PrintBondMarket_RefNo
ipagecount = Rs_PrintBondMarket_RefNo.pagecount
als ipagecurrent > ipagecount toen
ipagecurrent = ipagecount
beëindig als
als ipagecurrent < 1 toen
ipagecurrent = 1
beëindig als
als ipagecount = 0 toen
p= " "
p=p & „“
p=p & „ “
p=p & „“
p=p & „“
anders
Rs_PrintBondMarket_RefNo.AbsolutePage=ipagecurrent
'/
p = „“
'p = p & „“
p = p & „“
p = p & „Marketing Verwijzing Report Submitted: “ & datum () & „(CST) “
als PrintTypeID = „1“ toen
p = p & „Print in html“
p = p & „ | “
p = p & „Print in Excel“
p = p & „ | “
p = p & „Close dit page“
beëindig als
p = p & „ | “
p = p & „ “
p = bodem p & „“
p = p & „Bond No. | “
p = p & „ | >Marketing“
p = p & „Bond Type | “
p = p & „Principal Name | “
p = p & „Bond Term | “
p = p & „Bond Amt. | “
p = p & „GWP | “
p = p & „Other Amount | “
p = p & „Agency Code | “
p = p & „CSI Betaling Type | “
p = p & „Payment Number | “
p = p & „ “
p = p & „
| “
iRecordShown=0
Voor Elke TableField in Rs_PrintBondMarket_RefNo.Fields
p=p & „“
p=p & „“ & Rs_PrintBondMarket_RefNo.GetString (2, iPageSize) & „ | “
p=p & „ “
Daarna
'als agentnote <> "" toen
'p=p & „Note: “ & agentnote & „ | “
'beëindig als
beëindig als
'/
p=p & „“
p=p & „ “
navurl= " print_refcodes.asp "
p=p & „ | “
p=p & „ “
Rs_PrintBondMarket_RefNo.close
vastgestelde Rs_PrintBondMarket_RefNo = niets
vastgestelde Cmd_PrintBondMarket_RefNo = niets
anders
p= " You is niet gemachtigd om deze pagina te bekijken. Tevreden om ons te contacteren als u om het even welke question. | " hebt
p=p & „Close | “
beëindig als
Print_RefCodeByAgencyID=p
eind functie
|