merge r67228-r67235, r67237, r67251 and r67256-67259 to trunk (they are
[mono.git] / mcs / class / System.Web / Test / mainsoft / NunitWebResources / ReadOnlyPropertyControl.ascx
1 <%@ Control Language="C#" %>
2 <script runat="server">
3     [System.ComponentModel.Bindable (true)]
4     public readonly bool ReadOnlyField = true;
5     [System.ComponentModel.Bindable (true)]
6     public bool ReadOnlyProperty
7     {
8         get { return true; }
9     }
10 </script>