public class GetGroupHtmlByPid : IHttpHandler { GroupManager group; public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; int parentId = -1; int type = 0; string resultStr = string.Empty; if (!context.Request.QueryString["pid"].IsNullOrEmpty()) { Int32.TryParse(context.Request.QueryString["pid"], out parentId); } if (!context.Request.QueryString["type"].IsNullOrEmpty()) { Int32.TryParse(context.Request.QueryString["type"], out type); } if (parentId >= 0) { try { group = new GroupManager((GroupType)type); var subAg = group.AllGroups.Where(c => c.ParentId == parentId); resultStr += "
"; foreach (Base_group item in subAg) { resultStr += "
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn