在视图中使用模板之前我们已经有了自己的视图mysite.views.py中,应该是这样子的from django.http import HttpResponseimport datetimedef current_dt(request): now = datetime.datetime.no...
分类:
其他好文 时间:
2014-07-16 23:01:03
阅读次数:
168
Sharepoint自带的filter可以和Excel Web Access互动,下面将制作一个Demo,使用Current User Filter根据当前登录用户自动筛选Excel。 第一步,用Excel打开章节五制作的Excel文件 第二步,新建筛选器 第三步,给gender筛选器命名 第...
分类:
其他好文 时间:
2014-07-16 21:28:41
阅读次数:
175
public bool LendOutExcel(string strFileName, DataTable DT) { try { //清除Response缓存内容 HttpContext.Current.Response.Clear(); //缓存输出,并在完成整个响应之后将其发送 HttpCo...
分类:
其他好文 时间:
2014-07-16 21:22:39
阅读次数:
161
Visual Studio 2013的右上角有反馈、通知、登录、快速启动等按钮,在VS2013中没有选项可以设置为隐藏。打开注册表(开始 -> 运行 -> regedit),展开到以下路径:HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\12.0_...
分类:
其他好文 时间:
2014-07-16 20:33:07
阅读次数:
199
其实和以前的server版本配置没啥不一样都是先改注册表:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config\设置 AnnounceFlags 为 5HKEY_LOCAL_MACHINE\SYSTEM\Current...
http://www.111cn.net/database/mysql/55392.htm本文章来给各位同学介绍关于mysql 5.5与5.6 timestamp 字段 DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP的区别,希望此教程对各位...
分类:
数据库 时间:
2014-07-14 21:20:53
阅读次数:
377
昨天修改了一个工具,编译后本机运行正常,但放到服务器上执行却不行,提示:message:GetOleDbSchemaTable requires an open and available Connection. The connection's current state is closed重新检...
分类:
数据库 时间:
2014-07-13 08:24:44
阅读次数:
228
android提供了LocationManager来取得位置,用LocationListener来监听位置的变化
先做一些初始化工作:
/** latitude and longitude of current location*/
public static String mLat = "";
public static String mLon = "";
/** time out...
分类:
移动开发 时间:
2014-07-12 17:11:25
阅读次数:
248
Power of Cryptography
Time Limit: 1000MS
Memory Limit: 30000K
Total Submissions: 18258
Accepted: 9208
Description
Current work in cryptography involves (among oth...
分类:
其他好文 时间:
2014-07-10 23:57:35
阅读次数:
335
/**
* 将中间的View保转换成Bitmap
*
*/
private Bitmap saveViewBitmap(View view) {
// get current view bitmap
view.setDrawingCacheEnabled(true);
view.buildDrawingCache(true);
Bitmap bitmap = vie...
分类:
其他好文 时间:
2014-07-10 21:31:01
阅读次数:
195