三生石上 62ef818ff0 v6.0.3
2017-09-05 11:30:31 +08:00

41 lines
2.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="userinfo.aspx.cs" Inherits="FineUI.Examples.usercontrol.userinfo" %>
<%@ Register Src="UserInfoControl.ascx" TagName="UserInfoControl" TagPrefix="uc1" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<meta name="sourcefiles" content="~/usercontrol/UserInfoControl.ascx" />
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" runat="server"></f:PageManager>
<f:ContentPanel runat="server" ID="Panel1" Width="600px" EnableCollapse="true" BodyPadding="5px"
Height="200px" Title="页面/面板一ContentPanel->UserInfoControl">
<uc1:UserInfoControl ID="UserInfoControl1" UserName="陈萍萍" UserAge="20" UserCountry="合肥"
runat="server" />
</f:ContentPanel>
<br />
<f:Panel runat="server" ID="Panel2" Width="600px" Height="200px" EnableCollapse="true" BodyPadding="5px"
Title="页面/面板二Panel->UserControlConnector->UserInfoControl">
<Items>
<f:UserControlConnector runat="server">
<uc1:UserInfoControl ID="UserInfoControl2" UserName="陈萍萍" UserAge="20" UserCountry="合肥"
runat="server" />
</f:UserControlConnector>
</Items>
</f:Panel>
<br />
<f:Panel runat="server" ID="Panel3" Width="600px" Height="200px" EnableCollapse="true" BodyPadding="5px"
Layout="Fit" Title="页面/面板三Layout=Fit, Panel->UserControlConnector->UserInfoControl">
<Items>
<f:UserControlConnector runat="server">
<uc1:UserInfoControl ID="UserInfoControl3" UserName="陈萍萍" UserAge="20" UserCountry="合肥"
runat="server" />
</f:UserControlConnector>
</Items>
</f:Panel>
</form>
</body>
</html>