Entity Framework底层操作封装V2版本(5)...
分类:
其他好文 时间:
2014-05-09 22:18:17
阅读次数:
351
在Form域中Post大于100K的数据
当表单发送的数据量很大时,就会报错。查阅MSDN了解到,原因是微软对用Request.Form()可接收的最大数据有限制,IIS4中为80K字节,IIS5中为100K字节。
下面是微软提供的几个解决方法:
1、用Request.BinaryRead 代替 Request.Form方法 来解析表单数据;
2、使用文件上传方案,比如:Microso...
分类:
其他好文 时间:
2014-05-09 22:13:58
阅读次数:
348
Entity Framework底层操作封装V2版本(3)...
分类:
其他好文 时间:
2014-05-09 21:04:05
阅读次数:
229
Entity Framework底层操作封装V2版本(4)...
分类:
其他好文 时间:
2014-05-09 20:52:36
阅读次数:
325
今天在模拟登陆时,中文的用户名一直登陆不上,对用户名进行了各种转码还是不能解决。
在这个问题上一直卡了半个多小时,最终才发现根本不是用户名的编码问题,而是使用的第三方网络插件的ASIHTTPRequest编码问题,没有在提交表单时设置编码。
ASIFormDataRequest *request ....
分类:
其他好文 时间:
2014-05-09 20:35:52
阅读次数:
217
/** 输入参数* _Request: Page.Request 对象* _Response:
Page.Response 对象* _fileName: 下载文件名* _fullPath: 带文件名下载路径* _speed 每秒允许下载的字节数*
返回是否成功*/public static bool...
分类:
Web程序 时间:
2014-05-09 20:25:04
阅读次数:
537
在android中,listview一般都是通过一个adapter来绑定数据,一般的item的点击事件都会指向同一个目标(intent),只是所带的参数不同而已,但有的时候事与愿违,每个item的目标(intent)是不同的,此时我们需要一点技巧来处理这种情况。。。我的做法是每个item对应的entity添加一个listener ,来监听自己的事件。。上代码:
Listitem的定义[包含...
分类:
其他好文 时间:
2014-05-09 14:52:48
阅读次数:
290
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
Fix invisible cursor issue in Ubuntu
13.10Fixing this problem is rather too easy. Open a terminal (Ctrl+Alt+T) and
use the following command:gsettings...
分类:
其他好文 时间:
2014-05-09 07:57:17
阅读次数:
311
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