|
Server : Microsoft-IIS/10.0 System : Windows NT EBS-6136 10.0 build 17763 (Windows Server 2016) i586 User : jxgj ( 0) PHP Version : 7.0.33 Disable Function : passthru,exec,system,shell_exec,proc_open,popen,pcntl_exec,socket_bind,stream_socket_server Directory : D:/tmp_aspnet/root/cae6aa2e/15328683/ |
?#pragma checksum "D:\wwwroot\anlian2025\wwwroot\App_Code\webpay.cs" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "AD2B5E041C0712C654BBD567B53444017DBB46B3"
#line 1 "D:\wwwroot\anlian2025\wwwroot\App_Code\webpay.cs"
using System;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using basic;
using System.Xml;
using System.Web;
namespace webpay
{
public class webpaycan : System.Web.UI.Page
{
public static string Get(string key)
{
BasicPage bp = new BasicPage();
string flag = "";
SqlDataReader reader = bp.getRead("select "+ key + " from tb_pay");
if (reader.Read())
{
flag = reader[0].ToString();
}
reader.Close();
return flag;
}
}
}
#line default
#line hidden