Controller 到 View1 强类型控制器 // GET: /Test/ public ActionResult Index() { DateTime date = DateTime.Now; //大部分时候使用自定义类型 ...
分类:
Web程序 时间:
2014-09-01 15:26:43
阅读次数:
227
First DateTime Limit: 3000ms, Special Time Limit:7500ms, Memory Limit:65536KBTotal submit users: 77, Accepted users: 46Problem 12952 : No special judg...
分类:
其他好文 时间:
2014-08-31 22:49:02
阅读次数:
301
模板 上篇博文学习了动态视图,但是,视图中返回文本的方式有点特别。 也就是说,HTML被直接硬编码在 Python 代码之中。1 def current_datetime(request):2 now = datetime.datetime.now()3 html = "It is...
分类:
编程语言 时间:
2014-08-31 13:03:11
阅读次数:
243
1.为了可以使用backspace、delete等,安装readline-develyuminstallreadline-devel2.下载python3.编译pythoncd到对应目录./configure--prefix=/isr/local/python27make&&makeinstall4.为了可以使用ipython历史命令,安装SQlite5.编译ipythoncd到相应目录,使用刚才装好..
分类:
编程语言 时间:
2014-08-31 02:51:41
阅读次数:
274
import sysimport datetimefor line in sys.stdin: line = line.strip() userid, movieid, rating, unixtime = line.split('\t') weekday = datetime.datetim...
分类:
其他好文 时间:
2014-08-31 00:17:50
阅读次数:
1780
ASP.NET中的cookie:创建Cookie方法 (1) Response.Cookies["userName"].Value=“admin"; Response.Cookies[“userName”].Expires=DateTime.Now.AddDays(1); //如果不设置失效时间.....
分类:
其他好文 时间:
2014-08-30 17:41:49
阅读次数:
209
1.与ANSI和ISO8601标准的一致性不同datetime不符合该标准,datetime2符合该标准。对于新的应用,尽量使用符合标准的类型。2.表示范围的不同datetime:1753-01-01 00:00:00 到 9999-12-31 23:59:59.997datetime2:0000-...
分类:
其他好文 时间:
2014-08-30 17:33:19
阅读次数:
160
数据库日期和时间类型相互转换 time ? date time ? smalldatetime time ? datetime time ? datetime2 time ? datetimeoffset date ? smalldatetime date ? datetime date ? dat...
分类:
数据库 时间:
2014-08-30 02:20:58
阅读次数:
413
Sql server 2005datetime和smalldatetime日期类型,用来表示一天的日期和时间。datetime 范围 1753年1月1日-9999年12月31日 精度 3.33毫秒smalldatetime 范围 1900年1月1日-2079年6月6日 精度 1分备注:1.SQl S...
分类:
其他好文 时间:
2014-08-29 21:15:28
阅读次数:
226
最近打算用 Python 来开发网站的一些其它功能,先来搭建 Python 的运行环境吧。安装 PythonPython 的目前有两个版本,Python 2.7.5 和 Python 3.3.2。Python 3.x 与 2.x 不仅仅是版本的新旧的区别那么简单,Python3.x 是一个全新的东西...
分类:
编程语言 时间:
2014-08-29 09:23:57
阅读次数:
244