如果要将查询结果导出到Excel,只需将页面的Context-Type修改一下就可以了:header( "Content-Type:
application/vnd.ms-excel">如果希望能够提供那个打开/保存的对话框,Content-Disposition参数,Content-Disposi...
分类:
其他好文 时间:
2014-05-26 15:51:15
阅读次数:
172
function wrapText(context, text, x, y,
maxWidth, lineHeight) { var words = text.split(" "); var line = ""; for (var
n...
分类:
其他好文 时间:
2014-05-24 07:58:42
阅读次数:
244
///
/// 判断手机用户UserAgent
///
///
private bool IsMobile()
{
HttpContext context = HttpContext.Current;
if (context != null)
{
HttpRequest request = context.Request;
i...
分类:
移动开发 时间:
2014-05-23 01:06:25
阅读次数:
258
package com.example.openstart;
import android.app.KeyguardManager;
import android.app.KeyguardManager.KeyguardLock;
import android.content.BroadcastReceiver;
import android.content.Context;
import and...
分类:
移动开发 时间:
2014-05-23 00:05:56
阅读次数:
281
这两天在做微软App-V应用程序虚拟化的试验,公司需要测试自有C/S架构产品在其上的部署。搭建过程比较顺利,突然的今天上班后发现App-VServer(域成员服务器)使用域用户登陆时报错:TheSecurityDatabaseontheServerDoesNotHaveaComputerAccountforThisWorkstationTrustRelations..
分类:
数据库 时间:
2014-05-22 18:09:28
阅读次数:
1107
using System;using System.Collections.Generic;using
System.Linq;using System.Web;using System.Web.Mvc;using
System.Web.Security;namespace 验证权限.Control...
分类:
Web程序 时间:
2014-05-22 15:36:02
阅读次数:
264
Collection Functions (Arrays or Objects)each
_.each(list, iterator,
[context])遍历list中的所有元素,如果传递了context参数,则把iterator绑定到context对象上。iterator的参数是(valu...
context.xml中增加WEB-INF/web.xml,Eclipse在修改了web.xml后将自动更新到tomcat服务器中。
WEB-INF/web.xml --> <!-- Uncomment this to enable
Comet connec...
分类:
编程语言 时间:
2014-05-21 17:33:49
阅读次数:
256
野火烧不尽,春风吹又生。众里寻他千百度,蓦然回首,那人却在灯火阑珊处。天作孽,犹可违,自作孽,不可活。山高月小,水落石出。晴川历历汉阳树,芳草萋萋鹦鹉洲。 package test.des2.tt;
/**
*
* 这个是真正实用的。修正了以前方法的只加密了前8位正确的bug。
*/
import java.security.*;
import javax...
分类:
编程语言 时间:
2014-05-21 14:31:16
阅读次数:
337
怎样实现图片滚动器的效果。
今天就总结下。这里我也不多说什么。直接源代码。不懂的直接提问我。
第一种实现方式:利用Gallery,但是这个现在已经过时了。我这里不多介绍了。只贴一个核心类。
package com.drocode.swithcer;
import java.util.TimerTask;
import android.content.Context;
import...
分类:
移动开发 时间:
2014-05-21 08:50:10
阅读次数:
357