using Dscf.Bpl.InformationAuditBpl;
using Dscf.Bpl.ProductBpl;
using Dscf.Global.CommonAduit;
using Dscf.Global.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Script.Serialization;
using LitJson;
using Dscf.Client.InformationAuditWeb.App_Start;
using System.Configuration;
using System.Web.SessionState;
using Dscf.Bpl.UserBpl;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json;
using System.Text;
using Org.BouncyCastle.Crypto.Encodings;
using Org.BouncyCastle.Crypto.Engines;
namespace Dscf.Client.InformationAuditWeb.Handler
{
/// <summary>
/// ZhiChengHandler 的摘要说明
/// </summary>
public class ZhiChengHandler : IHttpHandler, IReadOnlySessionState, IRequiresSessionState
{
public void ProcessRequest(HttpContext context)
{
string type = context.Request["type"];
context.Response.ContentType = "text/plain";
switch (type)
{
case "0"://查询显示
{
context.Response.Write(getUserinfo(context));
break;
}
case "1"://借款显示
{
context.Response.Write(Loadselect(context));
break;
}
}
}
/// <summary