FineUI/FineUI.Examples/other/custom_postback.aspx
2013-11-01 14:13:51 +08:00

38 lines
1.3 KiB
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="custom_postback.aspx.cs"
Inherits="FineUI.Examples.other.custom_postback" %>
<!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" runat="server" Width="600px" BodyPadding="5px" EnableFrame="true" EnableCollapse="true"
Title="简单表单">
<Items>
<x:TextBox ID="TextBox1" runat="server" ShowLabel="false" EmptyText="输入一些文字并按 ENTER 键">
</x:TextBox>
<x:TextBox ID="TextBox2" runat="server" ShowLabel="false">
</x:TextBox>
</Items>
</x:SimpleForm>
</form>
<script type="text/javascript">
function onReady() {
var textbox1ID = '<%= TextBox1.ClientID %>';
var textbox1 = X(textbox1ID);
textbox1.on("specialkey", function (box, e) {
if (e.getKey() == e.ENTER) {
__doPostBack(textbox1ID, 'specialkey');
}
});
}
</script>
</body>
</html>