FineUI/FineUI.Examples/message/confirm_cancel.aspx
三生石上 79ad9e6bc2 v4.2.3
2016-01-10 01:19:30 -05:00

29 lines
1.1 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="confirm_cancel.aspx.cs"
Inherits="FineUI.Examples.message.confirm_cancel" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<link href="../res/css/common.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" runat="server" />
<f:Button Text="操作一ConfirmText" runat="server" ID="btnOperation1" ConfirmText="确认执行操作一?"
OnClick="btnOperation1_Click">
</f:Button>
<br />
<br />
<f:Button Text="操作二OnClientClick" runat="server" ID="btnOperation2" EnablePostBack="false"
OnClick="btnOperation2_Click">
</f:Button>
<br />
<br />
<f:Button Text="操作三OnClientClick点击取消按钮也回发" runat="server" ID="btnOperation3" EnablePostBack="false"
OnClick="btnOperation3_Click">
</f:Button>
</form>
</body>
</html>