using MySql.Data.MySqlClient; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Web; namespace FangYar.WebUI.ashx { /// /// SysUpdPartyEmpPhotoHandler 的摘要说明:更新党建数据模块人员照片信息 /// 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; } } } }