-
Notifications
You must be signed in to change notification settings - Fork 0
/
AdminBooks.cs
364 lines (253 loc) · 9.64 KB
/
AdminBooks.cs
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
namespace Book_Store
{
//
// Filename: AdminBooks.cs
// Generated with CodeCharge 2.0.5
// ASP.NET C#.ccp build 03/07/2002
//
//--------------------------------
//
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.OleDb;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
/// <summary>
/// Summary description for AdminBooks.
/// </summary>
///
public partial class AdminBooks : System.Web.UI.Page
{
//ToDO abc
//ToDO abc
//AdminBooks CustomIncludes begin
protected CCUtility Utility;
//Search form Search variables and controls declarations
//Grid form Items variables and controls declarations
protected string Items_sSQL;
protected string Items_sCountSQL;
protected int Items_CountPage;
//protected System.Web.UI.WebControls.LinkButton Items_insert;
protected int i_Items_curpage=1;
// For each Search form hiddens for PK's,List of Values and Actions
protected string Search_FormAction="AdminBooks.aspx?";
protected String[] Search_is_recommended_lov = ";All;0;No;1;Yes".Split(new Char[] {';'});
// For each Items form hiddens for PK's,List of Values and Actions
protected string Items_FormAction="BookMaint.aspx?";
protected String[] Items_is_recommended_lov = "0;No;1;Yes".Split(new Char[] {';'});
public AdminBooks()
{
int i = 9;
this.Init += new System.EventHandler(Page_Init);
}
// AdminBooks CustomIncludes end
//-------------------------------
public void ValidateNumeric(object source, ServerValidateEventArgs args) {
try{
Decimal temp=Decimal.Parse(args.Value);
args.IsValid=true;
}catch{
args.IsValid=false; }
}
//===============================
// AdminBooks Show begin
protected void Page_Load(object sender, EventArgs e)
{
Utility=new CCUtility(this);
//===============================
// AdminBooks Open Event begin
// AdminBooks Open Event end
//===============================
//===============================
// AdminBooks OpenAnyPage Event begin
// AdminBooks OpenAnyPage Event end
//===============================
//
//===============================
// AdminBooks PageSecurity begin
Utility.CheckSecurity(2);
// AdminBooks PageSecurity end
//===============================
if (!IsPostBack){
Page_Show(sender, e);
}
}
protected void Page_Unload(object sender, EventArgs e)
{
//
// CODEGEN: This call is required by the ASP+ Windows Form Designer.
//
if(Utility!=null) Utility.DBClose();
}
protected void Page_Init(object sender, EventArgs e)
{
//
// CODEGEN: This call is required by the ASP+ Windows Form Designer.
//
InitializeComponent();
Search_search_button.Click += new System.EventHandler (this.Search_search_Click);
Items_insert.Click += new System.EventHandler (this.Items_insert_Click);
Items_Pager.NavigateCompleted+=new NavigateCompletedHandler(this.Items_pager_navigate_completed);
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
}
protected void Page_Show(object sender, EventArgs e)
{
Search_Show();
Items_Bind();
}
// AdminBooks Show end
// End of Login form
void Search_Show() {
// Search Open Event begin
// Search Open Event end
// Search Show begin
Utility.buildListBox(Search_category_id.Items,"select category_id,name from categories order by 2","category_id","name","All","");
Utility.buildListBox(Search_is_recommended.Items,Search_is_recommended_lov,null,"");
string s;
s=Utility.GetParam("category_id");
try {Search_category_id.SelectedIndex=Search_category_id.Items.IndexOf(Search_category_id.Items.FindByValue(s));
}catch{}
s=Utility.GetParam("is_recommended");
try {Search_is_recommended.SelectedIndex=Search_is_recommended.Items.IndexOf(Search_is_recommended.Items.FindByValue(s));
}catch{}
// Search Show Event begin
// Search Show Event end
// Search Show end
// Search Close Event begin
// Search Close Event end
}
void Search_search_Click(Object Src, EventArgs E) {
string sURL = Search_FormAction + "category_id="+Search_category_id.SelectedItem.Value+"&"
+ "is_recommended="+Search_is_recommended.SelectedItem.Value+"&"
;
// Transit
sURL += "";
Response.Redirect(sURL);
}
// End of Login form
const int Items_PAGENUM = 20;
public void Items_Repeater_ItemDataBound(Object Sender, RepeaterItemEventArgs e){
// Items Show Event begin
// Items Show Event end
}
ICollection Items_CreateDataSource() {
// Items Show begin
Items_sSQL = "";
Items_sCountSQL = "";
string sWhere = "", sOrder = "";
bool HasParam = false;
//-------------------------------
// Build ORDER BY statement
//-------------------------------
if(Utility.GetParam("FormItems_Sorting").Length>0&&!IsPostBack)
{ViewState["SortColumn"]=Utility.GetParam("FormItems_Sorting");
ViewState["SortDir"]="ASC";}
if(ViewState["SortColumn"]!=null) sOrder = " ORDER BY " + ViewState["SortColumn"].ToString()+" "+ViewState["SortDir"].ToString();
//-------------------------------
// Build WHERE statement
//-------------------------------
System.Collections.Specialized.StringDictionary Params =new System.Collections.Specialized.StringDictionary();
if(!Params.ContainsKey("category_id")){
string temp=Utility.GetParam("category_id");
if (Utility.IsNumeric(null,temp) && temp.Length>0) { temp = CCUtility.ToSQL(temp, FieldTypes.Number);} else {temp = "";}
Params.Add("category_id",temp);}
if(!Params.ContainsKey("is_recommended")){
string temp=Utility.GetParam("is_recommended");
if (Utility.IsNumeric(null,temp) && temp.Length>0) { temp = CCUtility.ToSQL(temp, FieldTypes.Number);} else {temp = "";}
Params.Add("is_recommended",temp);}
if (Params["category_id"].Length>0) {
HasParam = true;
sWhere +="i.[category_id]=" + Params["category_id"];
}
if (Params["is_recommended"].Length>0) {
if (sWhere.Length >0) sWhere +=" and ";
HasParam = true;
sWhere +="i.[is_recommended]=" + Params["is_recommended"];
}
if(HasParam)
sWhere = " AND (" + sWhere + ")";
//-------------------------------
// Build base SQL statement
//-------------------------------
Items_sSQL = "select [i].[author] as i_author, " +
"[i].[category_id] as i_category_id, " +
"[i].[is_recommended] as i_is_recommended, " +
"[i].[item_id] as i_item_id, " +
"[i].[name] as i_name, " +
"[i].[price] as i_price, " +
"[c].[category_id] as c_category_id, " +
"[c].[name] as c_name " +
" from [items] i, [categories] c" +
" where [c].[category_id]=i.[category_id] ";
//-------------------------------
//-------------------------------
//-------------------------------
//-------------------------------
// Assemble full SQL statement
//-------------------------------
Items_sSQL = Items_sSQL + sWhere + sOrder;
if (Items_sCountSQL.Length== 0) {
int iTmpI = Items_sSQL.ToLower().IndexOf("select ");
int iTmpJ = Items_sSQL.ToLower().LastIndexOf(" from ")-1;
Items_sCountSQL = Items_sSQL.Replace(Items_sSQL.Substring(iTmpI + 7, iTmpJ-6), " count(*) ");
iTmpI = Items_sCountSQL.ToLower().IndexOf(" order by");
if (iTmpI > 1) Items_sCountSQL = Items_sCountSQL.Substring(0, iTmpI);
}
//-------------------------------
OleDbDataAdapter command = new OleDbDataAdapter(Items_sSQL, Utility.Connection);
DataSet ds = new DataSet();
command.Fill(ds, (i_Items_curpage - 1) * Items_PAGENUM, Items_PAGENUM,"Items");
OleDbCommand ccommand = new OleDbCommand(Items_sCountSQL, Utility.Connection);
int PageTemp=(int)ccommand.ExecuteScalar();
Items_Pager.MaxPage=(PageTemp%Items_PAGENUM)>0?(int)(PageTemp/Items_PAGENUM)+1:(int)(PageTemp/Items_PAGENUM);
bool AllowScroller=Items_Pager.MaxPage==1?false:true;
DataView Source;
Source = new DataView(ds.Tables[0]);
if (ds.Tables[0].Rows.Count == 0){
Items_no_records.Visible = true;
AllowScroller=false;}
else
{Items_no_records.Visible = false;
AllowScroller=AllowScroller&&true;}
Items_Pager.Visible=AllowScroller;
return Source;
// Items Show end
}
protected void Items_pager_navigate_completed(Object Src, int CurrPage)
{
i_Items_curpage=CurrPage;
// Items CustomNavigation Event begin
// Items CustomNavigation Event end
Items_Bind();
}
void Items_Bind() {
Items_Repeater.DataSource = Items_CreateDataSource();
Items_Repeater.DataBind();
}
void Items_insert_Click(Object Src, EventArgs E) {
string sURL = Items_FormAction+"category_id=" + Server.UrlEncode(Utility.GetParam("category_id")) + "&is_recommended=" + Server.UrlEncode(Utility.GetParam("is_recommended")) + "&";
Response.Redirect(sURL);
}
protected void Items_SortChange(Object Src, EventArgs E) {
if(ViewState["SortColumn"]==null || ViewState["SortColumn"].ToString()!=((LinkButton)Src).CommandArgument){
ViewState["SortColumn"]=((LinkButton)Src).CommandArgument;
ViewState["SortDir"]="ASC";
}else{
ViewState["SortDir"]=ViewState["SortDir"].ToString()=="ASC"?"DESC":"ASC";
}
Items_Bind();
}
}
}