. ashx files for writing web handler . ashx files are similar to. aspx files, which can be used to invoke the HttpHandler class, which eliminates the control parsing of normal. aspx pages and the process of page processing. is actually a mixed file with HTML and C #.
The. ashx file is suitable for producing data formats that are processed by the browser that do not require postback processing, such as for generating dynamic pictures, dynamic text, and so on. Many need to use this kind of treatment. This document provides a simple demo to call the Ashx file and post the source code of the key file.
The following is the source code in the Login.ashx file in the demo:
public class Login:ihttphandler {public void ProcessRequest (HttpContext context) {context. Response.ContentType = "Application/json"; Get method gets the data passed//string username = context. request.querystring["username"]; String Password = context. request.querystring["Password"]; The Post method gets the data passed in string username = context. request.form["username"]; String Password = context. request.form["Password"]; String message = NULL; if (string. IsNullOrEmpty (username)) {message = "user name cannot be empty"; Context. Response.Write ("{\" success\ ": False,\" message\ ": \" + message + "\"} ");//This JSON format is very important, otherwise the error function of jquery will be executed Contex T.response.end (); } if (string. IsNullOrEmpty (password)) {message = "Password cannot be empty"; Context. Response.Write ("{\" success\ ": False,\" message\ ": \" "+ Message +" \ "}"); Context. Response.End (); } if (!string. IsNullOrEmpty (username) &&!string. IsNullOrEmpty (password)) {if (username. ToUpper () = = "ADMIN" && password = = "123") {message = "login successful"; Context. Response.Write ("{\" success\ ": True,\" message\ ": \" "+ Message +" \ "}"); } else {message = "User name or password error"; Context. Response.Write ("{\" success\ ": False,\" message\ ": \" "+ Message +" \ "}"); }} context. Response.End (); } public bool IsReusable {get {return false; } }}
The following is the source code in HTML:
<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">