adapted to run tests on net2.0 wersion of system.web
[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>