软测单独项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
779 B

using MySql.Data.MySqlClient;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
namespace FangYar.WebUI.ashx
{
/// <summary>
/// SysUpdPartyEmpPhotoHandler 的摘要说明:更新党建数据模块人员照片信息
/// </summary>
public class SysUpdPartyEmpPhotoHandler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
string action = context.Request.Params["Action"];
string returnstr = "";
context.Response.Write(returnstr);
}
public bool IsReusable
{
get
{
return false;
}
}
}
}