79 lines
3.3 KiB
Plaintext
79 lines
3.3 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestPage.aspx.cs" Inherits="Test.WebSite.TestPage" %>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<div>
|
|
<table style="table-layout: fixed; width: 100%;">
|
|
<tr>
|
|
<td style="vertical-align: middle;">
|
|
接口地址:<asp:TextBox ID="Url" runat="server" Text="" Width="100%"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="vertical-align: middle;">
|
|
接口名称:<asp:TextBox ID="method_name" runat="server" Text="" Width="100%"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="vertical-align: middle;">
|
|
服务区编码:<asp:TextBox ID="code" runat="server" Text="" Width="100%"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="vertical-align: middle;">
|
|
传输表名称:<asp:TextBox ID="tableName" runat="server" Text="" Width="100%"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="vertical-align: middle;">
|
|
传输数据包:<asp:TextBox ID="jsonString" runat="server" Text="" Width="100%"
|
|
TextMode="MultiLine" Rows="4"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="vertical-align: middle;">
|
|
orderString:<asp:TextBox ID="orderString" runat="server" Text="" Width="100%"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="vertical-align: middle;">
|
|
redis数据库判断数据表的唯一标识:
|
|
<asp:TextBox ID="UniqueCode" runat="server" Text="" Width="100%"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="vertical-align: middle;">
|
|
是否只进行缓存数据更新:
|
|
<asp:TextBox ID="redisInsert" runat="server" Text="" Width="100%"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="vertical-align: middle;">
|
|
<asp:Button ID="BtnSend" runat="server" Text="调用接口" OnClick="BtnSend_Click" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="vertical-align: middle;">
|
|
文本日志:
|
|
<asp:TextBox ID="LogData" runat="server" Width="100%" Text=""
|
|
TextMode="MultiLine" Rows="10"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<asp:GridView ID="GridView_Redis" runat="server"></asp:GridView>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|