FineUI/FineUI.Examples/form/calendar.aspx

29 lines
1.0 KiB
Plaintext
Raw Normal View History

2013-11-01 14:13:51 +08:00
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="calendar.aspx.cs" Inherits="FineUI.Examples.form.calendar" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<link href="../css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<x:PageManager ID="PageManager1" runat="server" />
<x:SimpleForm ID="SimpleForm1" BodyPadding="5px" Width="550px" EnableFrame="true" EnableCollapse="true"
Title="简单表单" runat="server">
<Items>
<x:Calendar runat="server" EnableDateSelectEvent="true" DateFormatString="yyyy-MM-dd"
OnDateSelect="Calendar1_DateSelect" ID="Calendar1">
</x:Calendar>
<x:Button runat="server" ID="Button1" OnClick="Button1_Click">
</x:Button>
<x:Label ID="labResult1" ShowLabel="false" runat="server">
</x:Label>
</Items>
</x:SimpleForm>
</form>
</body>
</html>