三生石上 15588d275b v4.2.4.1
2017-09-05 10:49:48 +08:00

51 lines
1.4 KiB
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="cssclass.aspx.cs"
Inherits="FineUI.Examples.other.cssclass" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<style>
.red input {
color: Red;
font-weight: bold;
}
.red label {
color: Red;
font-weight: normal;
}
.blue input {
color: Blue;
font-weight: bold;
}
.blue label {
color: Blue;
font-weight: normal;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" runat="server" />
<f:SimpleForm ID="SimpleForm1" BodyPadding="5px" Width="550px" EnableCollapse="true"
Title="简单表单" runat="server">
<Items>
<f:TextBox runat="server" Label="用户名" CssClass="red" EmptyText="输入用户名" Text="张三"
ID="tbxUseraName">
</f:TextBox>
<f:TextBox runat="server" Label="密码" CssClass="red" TextMode="Password"
ID="tbxPassword">
</f:TextBox>
<f:Button ID="btnSwitchClass" Text="切换样式" runat="server" OnClick="btnSwitchClass_Click">
</f:Button>
</Items>
</f:SimpleForm>
<br />
</form>
</body>
</html>