getpayhandle.aspx

来自「网络订餐基于jsp与servlet的网络订餐系统 适合学生使用」· ASPX 代码 · 共 50 行

ASPX
50
字号
<%@ Page language="c#" Codebehind="GetPayHandle.aspx.cs" AutoEventWireup="false" Inherits="qruan.GetPayHandle" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
	<HEAD>
		<title>GetPayHandle</title>
		<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
		<meta content="C#" name="CODE_LANGUAGE">
		<meta content="JavaScript" name="vs_defaultClientScript">
		<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
		<style>
			BODY { FONT-SIZE: 9pt }
			INPUT { FONT-SIZE: 9pt }
			TD { FONT-SIZE: 9pt }
		</style>
	</HEAD>
	<body>
		<div align="center"><asp:label id="payMsg" ForeColor="#E10900" Runat="server">支付测试结果</asp:label></div>
		<form id="Form1" method="post" runat="server">
			<table cellSpacing="1" cellPadding="3" width="385" align="center" bgColor="#000000" border="0">
				<tr>
					<td width="102" bgColor="#f0f0f0" height="20">订 单 号:</td>
					<td width="280" bgColor="#ffffff">&nbsp;<font color="#000080"><%= c_order %></font></td>
				</tr>
				<tr>
					<td width="102" bgColor="#f0f0f0" height="20">订单金额:</td>
					<td width="280" bgColor="#ffffff">&nbsp;<font color="#000080"><%= c_orderamount %>元</font></td>
				</tr>
				<tr>
					<td width="102" bgColor="#f0f0f0" height="20">支付方式:</td>
					<td width="280" bgColor="#ffffff">&nbsp;<font color="#000080">云网支付@网在线支付</font></td>
				</tr>
				<tr>
					<td width="102" bgColor="#f0f0f0" height="20">支付结果:</td>
					<td width="280" bgColor="#ffffff">&nbsp;<font color="#e10900"><%
					if(c_succmark=="Y")
					{
						Response.Write("已支付成功");
					}
					else
					{
						Response.Write("支付失败, 错误原因:" + c_cause);
					}
					%></font>
					</td>
				</tr>
			</table>
		</form>
	</body>
</HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?