forked from siteserver/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathControlUtils.cs
More file actions
591 lines (543 loc) · 20 KB
/
Copy pathControlUtils.cs
File metadata and controls
591 lines (543 loc) · 20 KB
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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
using System.Text;
using System.Collections;
using System.Collections.Specialized;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Collections.Generic;
namespace SiteServer.Utils
{
/// <summary>
/// 对控件的帮助类
/// </summary>
public class ControlUtils
{
private ControlUtils()
{
}
/// <summary>
/// 得到代表控件的HTML代码
/// </summary>
/// <param name="control">控件</param>
/// <returns></returns>
public static string GetControlRenderHtml(Control control)
{
if (control == null) return string.Empty;
var builder = new StringBuilder();
var sw = new System.IO.StringWriter(builder);
var htw = new HtmlTextWriter(sw);
control.RenderControl(htw);
return builder.ToString();
}
public static string GetControlRenderHtml(Control control, Page page)
{
if (control == null) return string.Empty;
var builder = new StringBuilder();
control.Page = page;
control.DataBind();
var sw = new System.IO.StringWriter(builder);
var htw = new HtmlTextWriter(sw);
control.RenderControl(htw);
return builder.ToString();
}
/// <summary>
/// 如果此控件不存在此属性,将属性添加到控件中
/// </summary>
/// <param name="accessor">控件</param>
/// <param name="attributes">属性集合</param>
public static void AddAttributesIfNotExists(IAttributeAccessor accessor, Dictionary<string, string> attributes)
{
if (accessor == null || attributes == null) return;
foreach (var key in attributes.Keys)
{
if (accessor.GetAttribute(key) == null)
{
accessor.SetAttribute(key, attributes[key]);
}
}
}
/// <summary>
/// 如果此控件不存在此属性,将属性添加到控件中
/// </summary>
/// <param name="accessor"></param>
/// <param name="attributeName"></param>
/// <param name="attributeValue"></param>
public static void AddAttributeIfNotExists(IAttributeAccessor accessor, string attributeName, string attributeValue)
{
if (accessor == null || attributeName == null) return;
if (accessor.GetAttribute(attributeName) == null)
{
accessor.SetAttribute(attributeName, attributeValue);
}
}
/// <summary>
/// 将属性添加到控件中
/// </summary>
/// <param name="accessor">控件</param>
/// <param name="attributes">属性集合</param>
public static void AddAttributes(IAttributeAccessor accessor, StringDictionary attributes)
{
if (accessor == null || attributes == null) return;
foreach (string key in attributes.Keys)
{
accessor.SetAttribute(key, attributes[key]);
}
}
/// <summary>
/// 将属性添加到控件中
/// </summary>
/// <param name="accessor"></param>
/// <param name="attributeName"></param>
/// <param name="attributeValue"></param>
public static void AddAttribute(IAttributeAccessor accessor, string attributeName, string attributeValue)
{
if (accessor != null && attributeName != null)
{
accessor.SetAttribute(attributeName, attributeValue);
}
}
public static void AddListControlItems(ListControl listControl, List<string> list)
{
if (listControl == null) return;
foreach (var value in list)
{
var item = new ListItem(value, value);
listControl.Items.Add(item);
}
}
public static string[] GetSelectedListControlValueArray(ListControl listControl)
{
var arraylist = new ArrayList();
if (listControl != null)
{
foreach (ListItem item in listControl.Items)
{
if (item.Selected)
{
arraylist.Add(item.Value);
}
}
}
var retval = new string[arraylist.Count];
arraylist.CopyTo(retval);
return retval;
}
public static string GetSelectedListControlValueCollection(ListControl listControl)
{
var list = new List<string>();
if (listControl != null)
{
foreach (ListItem item in listControl.Items)
{
if (item.Selected)
{
list.Add(item.Value);
}
}
}
return TranslateUtils.ObjectCollectionToString(list);
}
public static ArrayList GetSelectedListControlValueArrayList(ListControl listControl)
{
var arraylist = new ArrayList();
if (listControl != null)
{
foreach (ListItem item in listControl.Items)
{
if (item.Selected)
{
arraylist.Add(item.Value);
}
}
}
return arraylist;
}
public static ArrayList GetSelectedListControlValueIntArrayList(ListControl listControl)
{
var arraylist = new ArrayList();
if (listControl != null)
{
foreach (ListItem item in listControl.Items)
{
if (item.Selected)
{
arraylist.Add(TranslateUtils.ToInt(item.Value));
}
}
}
return arraylist;
}
public static List<string> GetSelectedListControlValueStringList(ListControl listControl)
{
var list = new List<string>();
if (listControl != null)
{
foreach (ListItem item in listControl.Items)
{
if (item.Selected)
{
list.Add(item.Value);
}
}
}
return list;
}
public static List<int> GetSelectedListControlValueIntList(ListControl listControl)
{
var list = new List<int>();
if (listControl != null)
{
foreach (ListItem item in listControl.Items)
{
if (item.Selected)
{
list.Add(TranslateUtils.ToInt(item.Value));
}
}
}
return list;
}
public static string[] GetListControlValues(ListControl listControl)
{
var arraylist = new ArrayList();
if (listControl != null)
{
foreach (ListItem item in listControl.Items)
{
arraylist.Add(item.Value);
}
}
var retval = new string[arraylist.Count];
arraylist.CopyTo(retval);
return retval;
}
public static void SelectSingleItem(ListControl listControl, string value)
{
if (listControl == null) return;
listControl.ClearSelection();
foreach (ListItem item in listControl.Items)
{
if (string.Equals(item.Value, value))
{
item.Selected = true;
break;
}
}
}
public static void SelectSingleItemIgnoreCase(ListControl listControl, string value)
{
if (listControl == null) return;
listControl.ClearSelection();
foreach (ListItem item in listControl.Items)
{
if (StringUtils.EqualsIgnoreCase(item.Value, value))
{
item.Selected = true;
break;
}
}
}
public static void SelectMultiItems(ListControl listControl, params string[] values)
{
if (listControl == null) return;
listControl.ClearSelection();
foreach (ListItem item in listControl.Items)
{
foreach (var value in values)
{
if (string.Equals(item.Value, value))
{
item.Selected = true;
break;
}
}
}
}
public static void SelectMultiItems(ListControl listControl, List<string> values)
{
if (listControl == null) return;
listControl.ClearSelection();
foreach (ListItem item in listControl.Items)
{
foreach (var value in values)
{
if (string.Equals(item.Value, value))
{
item.Selected = true;
break;
}
}
}
}
public static void SelectMultiItems(ListControl listControl, List<int> values)
{
if (listControl == null) return;
listControl.ClearSelection();
foreach (ListItem item in listControl.Items)
{
foreach (var intVal in values)
{
if (string.Equals(item.Value, intVal.ToString()))
{
item.Selected = true;
break;
}
}
}
}
public static void SelectMultiItemsIgnoreCase(ListControl listControl, params string[] values)
{
if (listControl == null) return;
listControl.ClearSelection();
foreach (ListItem item in listControl.Items)
{
foreach (var value in values)
{
if (StringUtils.EqualsIgnoreCase(item.Value, value))
{
item.Selected = true;
break;
}
}
}
}
public static string SelectedItemsValueToStringCollection(ListItemCollection items)
{
var builder = new StringBuilder();
if (items!= null)
{
foreach (ListItem item in items)
{
if (item.Selected)
{
builder.Append(item.Value).Append(",");
}
}
if (builder.Length != 0)
builder.Remove(builder.Length - 1, 1);
}
return builder.ToString();
}
public static Control FindControlBySelfAndChildren(string id, Control baseControl)
{
Control ctrl = null;
if (baseControl != null)
{
ctrl = baseControl.FindControl(id);
if (ctrl == baseControl) ctrl = null;//DropDownList中FindControl将返回自身
if (ctrl == null && baseControl.HasControls())
{
ctrl = FindControlByChildren(id, baseControl.Controls);
}
}
return ctrl;
}
public static Control FindControlByChildren(string id, ControlCollection controls)
{
foreach (Control control in controls)
{
var ctrl = FindControlBySelfAndChildren(id, control);
if (ctrl != null)
{
return ctrl;
}
}
return null;
}
//public static string GetInputValue(Control containerControl, string inputName)
//{
// Control control;
// return GetInputValue(containerControl, inputName, out control);
//}
///// <summary>
///// 返回null代表未找到控件。
///// </summary>
//public static string GetInputValue(Control containerControl, string inputName, out Control control)
//{
// string value = null;
// control = FindControlBySelfAndChildren(inputName, containerControl);
// if (control != null)
// {
// value = string.Empty;
// if (control is TextBox)
// {
// var input = (TextBox)control;
// value = input.Text;
// }
// else if (control is HtmlInputControl)
// {
// var input = (HtmlInputControl)control;
// value = input.Value;
// }
// else if (control is HtmlTextArea)
// {
// var input = (HtmlTextArea)control;
// value = input.Value;
// }
// else if (control is TextEditorBase)
// {
// var input = (TextEditorBase)control;
// value = input.Text;
// }
// else if (control is ListControl)
// {
// var select = (ListControl)control;
// var arraylist = GetSelectedListControlValueArrayList(select);
// value = TranslateUtils.ObjectCollectionToString(arraylist);
// }
// else if (control is HtmlSelect)
// {
// var select = (HtmlSelect)control;
// var arraylist = new ArrayList();
// foreach (ListItem item in select.Items)
// {
// if (item.Selected)
// {
// arraylist.Add(item.Value);
// }
// }
// value = TranslateUtils.ObjectCollectionToString(arraylist);
// }
// else if (control is CheckBox)
// {
// var checkBox = (CheckBox)control;
// value = checkBox.Checked.ToString();
// }
// }
// return value;
//}
//public static void SetInputValue(Control containerControl, string inputName, TableStyleInfo styleInfo)
//{
// var control = FindControlBySelfAndChildren(inputName, containerControl);
// if (control != null)
// {
// if (control is TextBox)
// {
// var input = (TextBox)control;
// if (string.IsNullOrEmpty(input.Text) && !string.IsNullOrEmpty(styleInfo.DefaultValue))
// {
// input.Text = styleInfo.DefaultValue;
// }
// }
// else if (control is HtmlInputControl)
// {
// var input = (HtmlInputControl)control;
// if (string.IsNullOrEmpty(input.Value) && !string.IsNullOrEmpty(styleInfo.DefaultValue))
// {
// input.Value = styleInfo.DefaultValue;
// }
// }
// else if (control is HtmlTextArea)
// {
// var input = (HtmlTextArea)control;
// if (string.IsNullOrEmpty(input.Value) && !string.IsNullOrEmpty(styleInfo.DefaultValue))
// {
// input.Value = styleInfo.DefaultValue;
// }
// }
// else if (control is TextEditorBase)
// {
// var input = (TextEditorBase)control;
// if (string.IsNullOrEmpty(input.Text) && !string.IsNullOrEmpty(styleInfo.DefaultValue))
// {
// input.Text = styleInfo.DefaultValue;
// }
// }
// else if (control is ListControl)
// {
// var select = (ListControl)control;
// if (select.Items.Count == 0)
// {
// var tableStyleItemInfoArrayList = BaiRongDataProvider.TableStyleItemDao.GetStyleItemInfoList(styleInfo.TableStyleId);
// if (tableStyleItemInfoArrayList != null && tableStyleItemInfoArrayList.Count > 0)
// {
// foreach (var styleItemInfo in tableStyleItemInfoArrayList)
// {
// var listItem = new ListItem(styleItemInfo.ItemTitle, styleItemInfo.ItemValue);
// listItem.Selected = styleItemInfo.IsSelected;
// select.Items.Add(listItem);
// }
// }
// }
// }
// else if (control is HtmlSelect)
// {
// var select = (HtmlSelect)control;
// if (select.Items.Count == 0)
// {
// var tableStyleItemInfoArrayList = BaiRongDataProvider.TableStyleItemDao.GetStyleItemInfoList(styleInfo.TableStyleId);
// if (tableStyleItemInfoArrayList != null && tableStyleItemInfoArrayList.Count > 0)
// {
// foreach (var styleItemInfo in tableStyleItemInfoArrayList)
// {
// var listItem = new ListItem(styleItemInfo.ItemTitle, styleItemInfo.ItemValue);
// listItem.Selected = styleItemInfo.IsSelected;
// select.Items.Add(listItem);
// }
// }
// }
// }
// }
//}
//public static void SetInputValue(Control containerControl, string inputName, string value, TableStyleInfo styleInfo)
//{
// var control = FindControlBySelfAndChildren(inputName, containerControl);
// if (control != null)
// {
// if (control is TextBox)
// {
// var input = (TextBox)control;
// input.Text = value;
// }
// else if (control is HtmlInputControl)
// {
// var input = (HtmlInputControl)control;
// input.Value = value;
// }
// else if (control is HtmlTextArea)
// {
// var input = (HtmlTextArea)control;
// input.Value = value;
// }
// else if (control is TextEditorBase)
// {
// var input = (TextEditorBase)control;
// input.Text = value;
// }
// else if (control is ListControl)
// {
// var select = (ListControl)control;
// if (select.Items.Count == 0)
// {
// var tableStyleItemInfoArrayList = BaiRongDataProvider.TableStyleItemDao.GetStyleItemInfoList(styleInfo.TableStyleId);
// if (tableStyleItemInfoArrayList != null && tableStyleItemInfoArrayList.Count > 0)
// {
// foreach (var styleItemInfo in tableStyleItemInfoArrayList)
// {
// var listItem = new ListItem(styleItemInfo.ItemTitle, styleItemInfo.ItemValue);
// listItem.Selected = styleItemInfo.IsSelected;
// select.Items.Add(listItem);
// }
// }
// }
// }
// else if (control is HtmlSelect)
// {
// var select = (HtmlSelect)control;
// if (select.Items.Count == 0)
// {
// var tableStyleItemInfoArrayList = BaiRongDataProvider.TableStyleItemDao.GetStyleItemInfoList(styleInfo.TableStyleId);
// if (tableStyleItemInfoArrayList != null && tableStyleItemInfoArrayList.Count > 0)
// {
// foreach (var styleItemInfo in tableStyleItemInfoArrayList)
// {
// var listItem = new ListItem(styleItemInfo.ItemTitle, styleItemInfo.ItemValue);
// listItem.Selected = styleItemInfo.IsSelected;
// select.Items.Add(listItem);
// }
// }
// }
// }
// }
//}
}
}