11 lines
272 B
Plaintext
11 lines
272 B
Plaintext
|
<%@ Control Language="C#" %>
|
||
|
<script runat="server">
|
||
|
[System.ComponentModel.Bindable (true)]
|
||
|
public readonly bool ReadOnlyField = true;
|
||
|
[System.ComponentModel.Bindable (true)]
|
||
|
public bool ReadOnlyProperty
|
||
|
{
|
||
|
get { return true; }
|
||
|
}
|
||
|
</script>
|