码迷,mamicode.com
首页 >  
搜索关键字:rquest request    ( 19808个结果
Entity中Lazy Load的属性序列化JSON时报错
The server encountered an internal error that prevented it from fulfilling this request.org.springframework.http.converter.HttpMessageNotWritableExcep...
分类:Web程序   时间:2014-05-11 04:32:24    阅读次数:1292
request.getParameterValues与request.getParameter的区别
一、 简单的对比request.getParameter用的比较多,相对熟悉request.getParameterValues(String name)是获得如checkbox类(名字相同,但值有多个)的数据。 接收数组变量 ,如checkobx类型request.getParameter(Str...
分类:其他好文   时间:2014-05-10 23:44:41    阅读次数:519
ajax
ajax是js与后台的交互XMLHttpRequest对象在前台是看不到刷新效果的
分类:其他好文   时间:2014-05-10 06:49:58    阅读次数:275
案例:如何实现网上考试?
下面就是满足你设想的几个主程序,你还可以在实际应用中不断完善和扩充: login.asp  ' 考生验证    name=trim(request("name"))  passwd=trim(request("passwd"))  if name"" then  ' 检查考生是否输入用户名和密码  Set conn = Server.CreateObject("ADODB.Co...
分类:其他好文   时间:2014-05-10 04:25:30    阅读次数:276
在Form域中Post大于100K的数据
在Form域中Post大于100K的数据 当表单发送的数据量很大时,就会报错。查阅MSDN了解到,原因是微软对用Request.Form()可接收的最大数据有限制,IIS4中为80K字节,IIS5中为100K字节。   下面是微软提供的几个解决方法: 1、用Request.BinaryRead 代替 Request.Form方法 来解析表单数据; 2、使用文件上传方案,比如:Microso...
分类:其他好文   时间:2014-05-09 22:13:58    阅读次数:348
ASIHTTPRequest 编码问题
今天在模拟登陆时,中文的用户名一直登陆不上,对用户名进行了各种转码还是不能解决。 在这个问题上一直卡了半个多小时,最终才发现根本不是用户名的编码问题,而是使用的第三方网络插件的ASIHTTPRequest编码问题,没有在提交表单时设置编码。 ASIFormDataRequest *request ....
分类:其他好文   时间:2014-05-09 20:35:52    阅读次数:217
.net 文件下载
/** 输入参数* _Request: Page.Request 对象* _Response: Page.Response 对象* _fileName: 下载文件名* _fullPath: 带文件名下载路径* _speed 每秒允许下载的字节数* 返回是否成功*/public static bool...
分类:Web程序   时间:2014-05-09 20:25:04    阅读次数:537
使用FSO按文件大小浏览文件目录并进行删除操作
function JudgeParaRegular(intID)  if intID JudgeParaRegular=intId  else  Response.Write "输入错误!"  Response.End  end if  end function  intFileSize=JudgeParaRegular(Request.QueryString("intFileSi...
分类:其他好文   时间:2014-05-09 14:39:32    阅读次数:299
spring中scope作用域(转)
今天研究了一下scope的作用域。默认是单例模式,即scope="singleton"。另外scope还有prototype、request、session、global session作用域。scope="prototype"多例。再配置bean的作用域时,它的头文件形式如下:如何使用spring...
分类:编程语言   时间:2014-05-09 10:09:00    阅读次数:354
嵌入式linux 内核关机函数实现
arch/arm/kernel/process.c实现pm_power_off=关机函数参考board-omap3touchbook.c文件中pm_power_off=omap3_touchbook_poweroff;staticvoidomap3_touchbook_poweroff(void) { intpwr_off=TB_KILL_POWER_GPIO; if(gpio_request_one(pwr_off,GPIOF_OUT_INIT_LOW,"DVIreset")<0..
分类:系统相关   时间:2014-05-09 07:03:00    阅读次数:470
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!