码迷,mamicode.com
首页 >  
搜索关键字:ashx 一般处理程序 c    ( 919个结果
jQuery ajax同步的替换方法,使用 $.Deferred()对象
function aa() { var defer = $.Deferred(); $.ajax({ url: "/Handler1.ashx", type: "post", ...
分类:Web程序   时间:2014-05-26 23:49:24    阅读次数:431
利用jQuery传送json格式的字符串,后端用ashx文件来接收
在Default.aspx里面,我们会透过javascript建立两个物件,分别有Name和Age的属性,再透过Array的方式,将这两个物件塞到Array里面去。使用Ajax内建的$.ajax API,我们可以把url,type,data,sucess等几个属性先设定好,其中要注意到当我们想透过j...
分类:Web程序   时间:2014-05-26 16:35:17    阅读次数:297
在一般处理程序里写一个简单验证码
QQ:675556820代码不多,直接粘贴了。using System;using System.Web;using System.Drawing;public class 验证码 : IHttpHandler{ public void ProcessRequest(HttpContext c...
分类:其他好文   时间:2014-05-26 13:01:08    阅读次数:183
ajax图片上传(asp.net +jquery+ashx)
一、建立Default.aspx页面[csharp]view plaincopyajax图片上传二、新建一个一般处理文件Handler.ashx[csharp]view plaincopyusingSystem;usingSystem.Web;publicclassHandler:IHttpHand...
分类:Web程序   时间:2014-05-26 11:26:02    阅读次数:505
Ajax学习注意(1)
昨天写了Ajax今天选择的 文件->打开 -> 网站后, 页面怎么也读取不了数据经过一系列尝试后, 发现貌似路径不对,与昨天新建网站时的在解决方案资源管理器中显示的目录路径有差别,网站前面多了一级于是, 找到了 sln(解决方案, 打开)通过解决方案打开后,一切OK经过继续试验, 是应用ashx是的...
分类:其他好文   时间:2014-05-26 09:36:47    阅读次数:158
js跨域访问
客户端 HTML 1 2 服务端 H.ashx 1 2 3 using System; 4 using System.Web; 5 6 public class H : IHttpHandler { 7 8 public void ProcessRequest (HttpC...
分类:Web程序   时间:2014-05-23 23:47:10    阅读次数:499
在一般处理程序中,把Form Post过来的表单集合转换成对象 ,仿 MVC post,反射原理
using System;using System.Collections.Generic;using System.Collections.Specialized;using System.Linq;using System.Reflection;using System.Web;using We...
分类:Web程序   时间:2014-05-18 19:06:49    阅读次数:451
ashx文件中使用session提示“未将对象引用设置到对象的实例”
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Data;usingSystem.Web.SessionState;namespacefriends{//////Hand...
分类:其他好文   时间:2014-05-16 03:53:53    阅读次数:381
上传文件功能
最近项目上的一个上传文件功能,贴出来大家一起分享下,项目是MVC+EF+LigerUI 来做的页面需要引用这个JS 跟 CSS首先在页面添加Upload.ashx然后代码如下:using System;using System.Collections.Generic;using System.Lin...
分类:其他好文   时间:2014-05-09 19:29:00    阅读次数:453
UEditor上传图片等附件都出现红叉
我的环境: vs2010+netframework3.5+ueditor1_3_5-utf8-net问题:UEditor上传图片等附件都出现红叉尝试了网络上各种方法都不对, 后来只能自己看下imageUp.ashx的代码。。。解决方案: 默认代码: if (!String.IsNullOrEmpt....
分类:其他好文   时间:2014-05-07 14:48:36    阅读次数:242
919条   上一页 1 ... 89 90 91 92 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!