You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.8 KiB
Plaintext
55 lines
1.8 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="FeeDelete.aspx.cs" Inherits="DSWeb.Shipping.FeeDelete" %>
|
|
|
|
<!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>
|
|
<style type="text/css">
|
|
.btn
|
|
{
|
|
width:95px;
|
|
BORDER-RIGHT: #2C59AA 1px solid;
|
|
PADDING-RIGHT: 2px; BORDER-TOP: #2C59AA 1px solid;
|
|
PADDING-LEFT: 2px; FONT-SIZE: 12px; FILTER: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#ffffff, EndColorStr=#C3DAF5);
|
|
BORDER-LEFT: #2C59AA 1px solid; CURSOR: hand; COLOR: black; PADDING-TOP: 2px;
|
|
BORDER-BOTTOM: #2C59AA 1px solid
|
|
}
|
|
.txtTab{width:100%;border:1px solid #A0A0A4; border-color:#6699CC;}
|
|
</style>
|
|
<script type="text/javascript">
|
|
function saveApplyDelete(){
|
|
postEnterFee();
|
|
}
|
|
|
|
function postEnterFee(){
|
|
var myForm = document.getElementById("form1");
|
|
myForm.submit() ;
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<table width="100%" border="0">
|
|
<tr>
|
|
<td><div style=" font-size:12px; float:left">申请删除 原因说明</div></td>
|
|
<td>
|
|
<input type="text" id="txt_reason" runat="server" class="txtTab" style="width:260px;"/>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td><asp:Button ID="btn_save" runat="server" Text="确定" CssClass="btn"
|
|
onclick="btn_save_Click"/> <asp:Button
|
|
ID="btn_cancel" runat="server" Text="取消" CssClass="btn"
|
|
onclick="btn_cancel_Click" />
|
|
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html>
|