ashx 文件的使用
它就类似.aspx文件,用于处理传入到服务器的HTTP请求,但它不会像.aspx文件那样要返回处理结果和大量HTML,它可以返回简单的字符串、图片等。
百度百科定义链接:http://baike.baidu.com/view/3799515.htm
开发实例如下:
前端请求核心代码(json):
var jsonArray= new Array();
var jsonObj = {};
jsonObj["CourseId"] = $(this).children().eq(0).text();;
jsonObj["CertCategory"] = $(this).children().eq(3).text();
jsonObj["SubCertCategory"] = $(this).children().eq(4).text();
jsonArray.push(jsonObj)
});
var jsonDate =
{
jsontype: "objType",
jsonCount: jsonArray.length,
jsonArray: jsonArray
}
$.ajax({
type: "post",
url: "/AjaxPage/Certification.ashx",
dataType: "json",
data: objDate,
complete :function(){$("#load").hide();},//AJAX请求完成时隐藏
success: function (data)
{
if (data["Succeed"])
{
alert("提交成功!");
window.location.href = “";
}
},
error: function (XMLHttpRequest, textStatus, errorThrown)
{
alert("请求对象XMLHttpRequest: "+XMLHttpRequest);
alert("错误类型textStatus: "+textStatus);
alert("异常对象errorThrown: "+errorThrown);
}
});
后台ashx 接收:
public void ProcessRequest(HttpContext context)
{
string jsontype= context.Request["jsontype"];
int certCount=context.Request["jsonCount"];
AjaxResult result = new AjaxResult ();
switch (jsontype)
{
case "objType":
{
#region 操作
for (int k = 0; k < certCount; k++)
{
var courseId = context.Request["jsonArray[" + k + "][CourseId]"];
}
result.Succeed = true;
result.resultMsg= ex.Message;
context.Response.Write(JsonConvert.SerializeObject(result));
}
break;
#endregion
}
}
返回信息构建:
public class AjaxResult {
public bool Succeed { get; set; }
public string resultMsg { get; set; }
public object ObjInfo { get; set; }
public void setTrue(string message)
{
this.Succeed = true;
this.resultMsg= message;
}
public void setError(string message)
{
this.Succeed = false;
this.resultMsg= message;
}
}
ashx 文件的使用的更多相关文章
- .NET .ashx 文件 用Session 是需要注意的问题
.ashx 文件,默认不可使用 Session ,需要使用Session 时, 需要引用 接口 IRequiresSessionState 例如: public class AddHouseInfo ...
- ashx文件不能使用DAL和Model的解决办法
好久没有写web程序了,今天在写web程序时,发现一个问题,在ashx文件中,已经using了DAL和Model命名空间,而且引用中也引用了程序集,可是还报错:未能找到类型或命名空间"Mod ...
- Ajax跨域请求ashx文件与Webservice文件
前台页面: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1 ...
- 在Handler.ashx文件中使用session
使用jquery调用handler文件中的方法,需要使用session,默认生成的文件中,不可以直接使用session.按照以下步骤,即可以通过session与其他的aspx页面的session进行数 ...
- ASP.NET的SEO:使用.ashx文件——排除重复内容
本系列目录 不同的链接指向的页面如果具有大量相同的内容,这种现象就会被称为"重复内容",如果一个网站的重复内容很多,搜索引擎就会认为这个网站的价值不高.所以我们应尽量避免各种重复内 ...
- ashx文件要使用Session
ashx文件要使用Session,必须实现Session接口; using System;using System.Web;using System.Web.SessionState; //第一步:导 ...
- 解决ashx文件下的Session“未将对象引用设置到对象的实例”
using System; using System.Collections.Generic; using System.Linq; using System.Web; using PPT_DAL; ...
- 创建安全的ashx文件,ashx编译
<%@ WebHandler Language="C#" Class="Handler2" %> using System; using Syste ...
- ashx文件结合ajax使用(返回json数据)
ashx文件返回json数据: public void ProcessRequest(HttpContext context) { context.Response.ContentType = &qu ...
- ashx文件的使用
转自:http://www.cnblogs.com/Tally/archive/2013/02/19/2916499.html ashx是什么文件 .ashx 文件用于写web handler的..a ...
随机推荐
- Win2008 Server下配置安装IIS
最近又买了台服务器,接下来就是配置环境啦. 接下来接记录一下IIS的配置过程. 首先找到服务器管理器 打开后找到角色,点击添加角色 处理添加角色向导 勾选Web服务器(IIS) 点击添加必要功能 然后 ...
- Django DTL模板语法中的url反转
"""template_url_demo URL Configuration The `urlpatterns` list routes URLs to views. F ...
- python 全栈之路
目录 Python 全栈之路 一. Python 1. Python基础知识部分 2. Python -函数 3. Python - 模块 4. Python - 面对对象 5. Python - 文 ...
- power coefficient calculation -- post processing
input: unscaled moment of one bladeoutput: power coefficient of a 3-blades wind/tidal turbine matlab ...
- Springboot源码分析
参考资料 https://www.cnblogs.com/lizongshen/p/9127999.html
- 初次使用Let's encrypt
wget --no-check-certificate -O shadowsocks.sh https://raw.githubusercontent.com/teddysun/shadowsocks ...
- [luoguP1134] 阶乘问题(数论)
传送门 我直接用 long long 暴力,居然过了 ——代码 #include <cstdio> int n; long long x, ans = 1; int main() { in ...
- hdu 1853 KM算法
#include<stdio.h> #include<math.h> #include<string.h> #define N 200 #define inf 99 ...
- MYSQL中有关表的简单操作
#创建表 CREATE TABLE table02( tid INT, tname VARCHAR(20)); #查看所有表SHOW TABLES; #查看表的结构DESC table01; #修改表 ...
- C#: 根据指定压缩比率压缩图片
直接上代码: /// <summary> /// 根据指定压缩比率压缩图片 /// </summary> /// <param name="original&q ...