svn path=/trunk/mcs/; revision=70649
[mono.git] / mcs / class / Mainsoft.Web / Mainsoft.Web.AspnetConfig / aspnetconfig / GridCheckBox.cs.bak
1 // Mainsoft.Web.Administration - Site administration utility\r
2 // Authors:\r
3 //  Klain Yoni <yonik@mainsoft.com>\r
4 //\r
5 // (C) 2006 Mainsoft Corporation (http://www.mainsoft.com)\r
6 //\r
7 // Permission is hereby granted, free of charge, to any person obtaining\r
8 // a copy of this software and associated documentation files (the\r
9 // "Software"), to deal in the Software without restriction, including\r
10 // without limitation the rights to use, copy, modify, merge, publish,\r
11 // distribute, sublicense, and/or sell copies of the Software, and to\r
12 // permit persons to whom the Software is furnished to do so, subject to\r
13 // the following conditions:\r
14 // \r
15 // The above copyright notice and this permission notice shall be\r
16 // included in all copies or substantial portions of the Software.\r
17 // \r
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
25 \r
26 using System;\r
27 using System.Data;\r
28 using System.Configuration;\r
29 using System.Web;\r
30 using System.Web.Security;\r
31 using System.Web.UI;\r
32 using System.Web.UI.WebControls;\r
33 using System.Web.UI.HtmlControls;\r
34 using System.ComponentModel;\r
35 \r
36 namespace Mainsoft.Web.Administration\r
37 {\r
38         public class GridCheckBox : CheckBox\r
39         {\r
40                 [Bindable (true)]\r
41                 public string User\r
42                 {\r
43                         get { return ViewState["User"] == null ? String.Empty : (string) ViewState["User"]; }\r
44                         set { ViewState["User"] = value; }\r
45                 }\r
46 \r
47                 [Bindable (true)]\r
48                 public string Role\r
49                 {\r
50                         get { return ViewState["Role"] == null ? String.Empty : (string) ViewState["Role"]; }\r
51                         set { ViewState["Role"] = value; }\r
52                 }\r
53 \r
54         }\r
55 }\r