RoadFlow2.1 临时演示

GetNames.ashx.cs 669B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace WebForm.Controls.SelectMember
  6. {
  7. /// <summary>
  8. /// GetNames 的摘要说明
  9. /// </summary>
  10. public class GetNames : IHttpHandler
  11. {
  12. public void ProcessRequest(HttpContext context)
  13. {
  14. context.Response.ContentType = "text/plain";
  15. string values = context.Request.QueryString["values"];
  16. context.Response.Write(new RoadFlow.Platform.Organize().GetNames(values));
  17. }
  18. public bool IsReusable
  19. {
  20. get
  21. {
  22. return false;
  23. }
  24. }
  25. }
  26. }