The following tests were added:
[mono.git] / mcs / class / System.Web / Test / mainsoft / NunitWebResources / ReadOnlyPropertyBind.aspx
1 <%@ Page Language="C#" CodeFile="MyPage.aspx.cs" Inherits="MyPage" %>
2
3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4 <%@ Register TagPrefix="uc1" TagName="ReadOnlyPropertyControl" Src="ReadOnlyPropertyControl.ascx" %>
5
6 <html xmlns="http://www.w3.org/1999/xhtml" >
7     <head>
8         <title>UrlProperty test</title>
9     </head>
10 <body>
11     <form id="form1" runat="server">
12     <asp:FormView runat="server" ID="fv1" DataSourceID="DataSource1" BackColor="White" BorderColor="#DEDFDE" BorderStyle="None" BorderWidth="1px" CellPadding="4" ForeColor="Black" GridLines="Vertical" >
13     <ItemTemplate>
14     <uc1:ReadOnlyPropertyControl runat="server" ID="wuc1" ReadOnlyProperty='<%# Bind("Chars") %>' />
15     <uc1:ReadOnlyPropertyControl runat="server" ID="wuc2" ReadOnlyField='<%# Bind("Chars") %>' />
16     </ItemTemplate>
17     </asp:FormView>
18     <asp:ObjectDataSource ID="DataSource1" runat="server" TypeName="System.Guid" SelectMethod="ToByteArray" />
19     </form>
20 </body>
21 </html>