bklLiudl
2024-07-23 675b8bcc4a3630d95e3d0b97d933e63442075ecb
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
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
 
namespace Common
{
    public class ControlBindHelper
    {
        public static void BindGridViewList(DataTable table, GridView grid)
        {
            if (table == null || table.Rows.Count == 0)
            {
                table = table.Clone();
                table.Rows.Add(table.NewRow());
                grid.DataSource = table;
                grid.DataBind();
                int columnCount = table.Columns.Count;
                grid.Rows[0].Cells.Clear();
                grid.Rows[0].Cells.Add(new TableCell());
                grid.Rows[0].Cells[0].ColumnSpan = columnCount;
                grid.Rows[0].Cells[0].Text = "没有找到您要的相关数据";
                grid.Rows[0].Cells[0].Style.Add("text-align", "center");
            }
            else
            {
                grid.DataSource = table;
                grid.DataBind();
            }
        }
 
        public static void BindGridViewList(IList list, GridView grid)
        {
            grid.DataSource = list;
            grid.DataBind();
        }
 
        public static void BindRepeaterList(DataTable dt, Repeater repeater)
        {
            repeater.DataSource = dt;
            repeater.DataBind();
        }
 
        public static void BindRepeaterList(IList list, Repeater repeater)
        {
            repeater.DataSource = list;
            repeater.DataBind();
        }
 
        public static void BindRepeaterList<T>(IList<T> list, Repeater repeater)
        {
            repeater.DataSource = list;
            repeater.DataBind();
        }
 
        public static void BindDropDownList(DataTable dt, DropDownList dropdownlists, string _Name, string _ID, string _Memo)
        {
            dropdownlists.DataSource = dt;
            dropdownlists.DataTextField = _Name;
            dropdownlists.DataValueField = _ID;
            dropdownlists.DataBind();
            if (!string.IsNullOrEmpty(_Memo.Trim()))
            {
                dropdownlists.Items.Insert(0, new ListItem(_Memo, ""));
            }
        }
 
        public static void BindDropDownList(IList list, DropDownList dropdownlists, string _Name, string _ID, string _Memo)
        {
            dropdownlists.DataSource = list;
            dropdownlists.DataTextField = _Name;
            dropdownlists.DataValueField = _ID;
            dropdownlists.DataBind();
            if (!string.IsNullOrEmpty(_Memo.Trim()))
            {
                dropdownlists.Items.Insert(0, new ListItem(_Memo, ""));
            }
        }
 
        public static void BindDropDownList<T>(IList<T> list, DropDownList dropdownlists, string _Name, string _ID, string _Memo)
        {
            dropdownlists.DataSource = list;
            dropdownlists.DataTextField = _Name;
            dropdownlists.DataValueField = _ID;
            dropdownlists.DataBind();
            if (!string.IsNullOrEmpty(_Memo.Trim()))
            {
                dropdownlists.Items.Insert(0, new ListItem(_Memo, ""));
            }
        }
 
        public static void BindHtmlSelect(DataTable dt, HtmlSelect select, string _Name, string _ID, string _Memo)
        {
            select.DataSource = dt;
            select.DataTextField = _Name;
            select.DataValueField = _ID;
            select.DataBind();
            if (!string.IsNullOrEmpty(_Memo.Trim()))
            {
                select.Items.Insert(0, new ListItem(_Memo, ""));
            }
        }
 
        public static void BindHtmlSelect(IList list, HtmlSelect select, string _Name, string _ID, string _Memo)
        {
            select.DataSource = list;
            select.DataTextField = _Name;
            select.DataValueField = _ID;
            select.DataBind();
            if (!string.IsNullOrEmpty(_Memo.Trim()))
            {
                select.Items.Insert(0, new ListItem(_Memo, ""));
            }
        }
 
        public static void BindHtmlSelect<T>(IList<T> list, HtmlSelect select, string _Name, string _ID, string _Memo)
        {
            select.DataSource = list;
            select.DataTextField = _Name;
            select.DataValueField = _ID;
            select.DataBind();
            if (!string.IsNullOrEmpty(_Memo.Trim()))
            {
                select.Items.Insert(0, new ListItem(_Memo, ""));
            }
        }
 
        public static void BindRadioButtonList(DataTable dt, RadioButtonList rbllist, string _Name, string _ID)
        {
            rbllist.DataSource = dt;
            rbllist.DataTextField = _Name;
            rbllist.DataValueField = _ID;
            rbllist.DataBind();
        }
 
        public static void BindCheckBoxList(DataTable dt, CheckBoxList checkList, string _Name, string _ID)
        {
            checkList.DataSource = dt;
            checkList.DataTextField = _Name;
            checkList.DataValueField = _ID;
            checkList.DataBind();
        }
 
        public static Hashtable GetWebControls(Control page)
        {
            Hashtable ht = new Hashtable();
            int size = HttpContext.Current.Request.Params.Count;
            for (int i = 0; i < size; i++)
            {
                string id = HttpContext.Current.Request.Params.GetKey(i);
                Control control = page.FindControl(id);
                if (control != null)
                {
                    control = page.FindControl(id);
                    if (control is HtmlInputText)
                    {
                        HtmlInputText txt = (HtmlInputText)control;
                        ht[txt.ID] = txt.Value.Trim();
                    }
                    if (control is TextBox)
                    {
                        TextBox txt2 = (TextBox)control;
                        ht[txt2.ID] = txt2.Text.Trim();
                    }
                    if (control is HtmlSelect)
                    {
                        HtmlSelect txt3 = (HtmlSelect)control;
                        ht[txt3.ID] = txt3.Value.Trim();
                    }
                    if (control is HtmlInputHidden)
                    {
                        HtmlInputHidden txt4 = (HtmlInputHidden)control;
                        ht[txt4.ID] = txt4.Value.Trim();
                    }
                    if (control is HtmlInputPassword)
                    {
                        HtmlInputPassword txt5 = (HtmlInputPassword)control;
                        ht[txt5.ID] = txt5.Value.Trim();
                    }
                    if (control is HtmlInputCheckBox)
                    {
                        HtmlInputCheckBox chk = (HtmlInputCheckBox)control;
                        ht[chk.ID] = (chk.Checked ? 1 : 0);
                    }
                    if (control is HtmlTextArea)
                    {
                        HtmlTextArea area = (HtmlTextArea)control;
                        ht[area.ID] = area.Value.Trim();
                    }
                }
            }
            return ht;
        }
 
        public static void SetWebControls(Control page, Hashtable ht)
        {
            if (ht.Count != 0)
            {
                int size = ht.Keys.Count;
                foreach (string key in ht.Keys)
                {
                    object val = ht[key];
                    Control control = page.FindControl(key);
                    if (control != null)
                    {
                        if (control is HtmlInputText)
                        {
                            HtmlInputText txt = (HtmlInputText)control;
                            txt.Value = val.ToString();
                        }
                        if (control is TextBox)
                        {
                            TextBox txt2 = (TextBox)control;
                            txt2.Text = val.ToString();
                        }
                        if (control is DropDownList)
                        {
                            DropDownList txt3 = (DropDownList)control;
                            txt3.SelectedValue = val.ToString();
                        }
                        if (control is HtmlSelect)
                        {
                            HtmlSelect txt4 = (HtmlSelect)control;
                            txt4.Value = val.ToString();
                        }
                        if (control is HtmlInputHidden)
                        {
                            HtmlInputHidden txt5 = (HtmlInputHidden)control;
                            txt5.Value = val.ToString();
                        }
                        if (control is HtmlInputPassword)
                        {
                            HtmlInputPassword txt6 = (HtmlInputPassword)control;
                            txt6.Value = val.ToString();
                        }
                        if (control is Label)
                        {
                            Label txt7 = (Label)control;
                            txt7.Text = val.ToString();
                        }
                        if (control is HtmlTextArea)
                        {
                            HtmlTextArea area = (HtmlTextArea)control;
                            area.Value = val.ToString();
                        }
                    }
                }
            }
        }
 
        public static string GetControlProperty(string Control_Type, string Property_Name, string Control_ID, string Control_Style, string Control_Length, string Control_Validator, int j, string Colspan, string DataSource, string Event, string Maxlength)
        {
            StringBuilder property = new StringBuilder();
            if (Colspan == "")
            {
                if (j == 0)
                {
                    property.Append("<tr>");
                    property.Append("<th>" + Property_Name + "</th>");
                    property.Append("<td>");
                    property.Append(ControlBindHelper.GetControl_Type(Control_Type, Control_ID, Control_Style, Control_Length, Control_Validator, DataSource, Event, Maxlength));
                    property.Append("</td>");
                }
                else
                {
                    if (j == 1)
                    {
                        property.Append("<th>" + Property_Name + "</th>");
                        property.Append("<td>");
                        property.Append(ControlBindHelper.GetControl_Type(Control_Type, Control_ID, Control_Style, Control_Length, Control_Validator, DataSource, Event, Maxlength));
                        property.Append("</td>");
                        property.Append("</tr>");
                    }
                    else
                    {
                        property.Append("<tr>");
                        property.Append("<th>" + Property_Name + "</th>");
                        property.Append("<td>");
                        property.Append(ControlBindHelper.GetControl_Type(Control_Type, Control_ID, Control_Style, Control_Length, Control_Validator, DataSource, Event, Maxlength));
                        property.Append("</td>");
                        property.Append("</tr>");
                    }
                }
            }
            else
            {
                property.Append("<tr>");
                property.Append("<th>" + Property_Name + "</th>");
                property.Append("<td " + Colspan + ">");
                property.Append(ControlBindHelper.GetControl_Type(Control_Type, Control_ID, Control_Style, Control_Length, Control_Validator, DataSource, Event, Maxlength));
                property.Append("</td>");
                property.Append("</tr>");
            }
            return property.ToString();
        }
 
        public static string GetControl_Type(string Control_Type, string Control_ID, string Control_Style, string Control_Length, string Control_Validator, string DataSource, string Event, string Maxlength)
        {
            StringBuilder str_Control_Type = new StringBuilder();
            string strMaxlength = "";
            if (Maxlength != "")
            {
                strMaxlength = "maxlength=" + Maxlength;
            }
            string result;
            if (Control_Type != null)
            {
                if (Control_Type == "1")
                {
                    str_Control_Type.Append(string.Concat(new string[]
                    {
                        "<input id=\"",
                        Control_ID,
                        "\" ",
                        Event,
                        " ",
                        strMaxlength,
                        " type=\"text\" class=\"",
                        Control_Style,
                        "\" style=\"width: ",
                        Control_Length,
                        "\" ",
                        Control_Validator,
                        "/>"
                    }));
                    result = str_Control_Type.ToString();
                    return result;
                }
                if (Control_Type == "2")
                {
                    str_Control_Type.Append(string.Concat(new string[]
                    {
                        "<select id=\"",
                        Control_ID,
                        "\" ",
                        Event,
                        " class=\"",
                        Control_Style,
                        "\" style=\"width: ",
                        Control_Length,
                        "\" ",
                        Control_Validator,
                        "/>"
                    }));
                    if (DataSource != "")
                    {
                        string[] strSource = DataSource.Split(new char[]
                        {
                            '|'
                        });
                        string[] array = strSource;
                        for (int i = 0; i < array.Length; i++)
                        {
                            string item = array[i];
                            str_Control_Type.Append(string.Concat(new string[]
                            {
                                "<option value=",
                                item,
                                ">",
                                item,
                                "</option>"
                            }));
                        }
                    }
                    str_Control_Type.Append("</select>");
                    result = str_Control_Type.ToString();
                    return result;
                }
                if (Control_Type == "3")
                {
                    str_Control_Type.Append(string.Concat(new string[]
                    {
                        "<input id=\"",
                        Control_ID,
                        "\" ",
                        Event,
                        " ",
                        strMaxlength,
                        " type=\"text\" class=\"",
                        Control_Style,
                        "\" style=\"width: ",
                        Control_Length,
                        "\" ",
                        Control_Validator,
                        "/>"
                    }));
                    result = str_Control_Type.ToString();
                    return result;
                }
                if (Control_Type == "4")
                {
                    str_Control_Type.Append("<lable id=\"" + Control_ID + "\"/>");
                    result = str_Control_Type.ToString();
                    return result;
                }
            }
            result = "内部错误";
            return result;
        }
    }
}