a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
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>
|