username@email.com
2025-05-12 ae6e40362a745caef9ead36f81f38313fb8c2c66
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OrderArbitrate.aspx.cs"
    Inherits="CY.WebForm.Pages.business.OrderArbitrate" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>订单仲裁</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <table class="formTable" cellspacing="0" cellpadding="0" width="100%" border="0">
            <tr>
                <td class="tdk">
                    支付金额
                </td>
                <td>
                    <input id='txtSellerPrice' runat="server" maxlength='9' value='' onblur='ValidateDecimal(this)' />
                </td>
            </tr>
            <tr>
                <td class="tdk">
                    支付金额
                </td>
                <td>
                    <input id='txtBuyerPrice' runat="server" maxlength='9' value='' onblur='ValidateDecimal(this)' />
                </td>
            </tr>
            <tr>
                <td colspan="4" align="center">
                    <input id="btnSubmit" runat="server" class="payBtn" value="" title='仲裁' onclick="!if(confirm('是否确认本次仲裁?'))return false;" />
                </td>
            </tr>
        </table>
    </div>
    </form>
</body>
</html>