| 1234567891011121314151617181920212223 |
- <%@ WebHandler Language="C#" Class="senddata" %>
- using System;
- using System.Web;
- public class senddata : IHttpHandler
- {
- public void ProcessRequest(HttpContext context)
- {
- context.Response.ContentType = "text/plain";
- Led.SendData();
- }
- public bool IsReusable
- {
- get
- {
- return false;
- }
- }
- }
|