03 2014 档案

摘要:当然了,前提是你已经安装了Python和MySQL。我的Python是2.6版本的。Python2.6的“Set”有点兼容性问题,自己照着改一下:http://sourceforge.net/forum/message.php?msg_id=58089481)__init__.py删除 from sets import ImmutableSet将 class DBAPISet(ImmutableSet):改成 class DBAPISet(frozenset)2) converters.py删除 from sets import BaseSet, Set3)converters.py将 &qu 阅读全文
posted @ 2014-03-23 22:33 harry0906 阅读(202) 评论(0) 推荐(0)
摘要:#!/usr/bin/python## os module testimport osprint 'os.name: ', os.nameprint 'os.getcwd(): ', os.getcwd()print '''========================================='''print 'os.getenv(\'path\'): ', os.getenv('path')print '''=========== 阅读全文
posted @ 2014-03-21 22:28 harry0906 阅读(202) 评论(0) 推荐(0)
摘要:一>使用FileUpload控件,将其拖入页面: 内容 二>后端代码btnUpload_Click:using System;using System.Collections.Generic;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.IO;public partial class View : System.Web.UI.Page{ protected void... 阅读全文
posted @ 2014-03-02 21:23 harry0906 阅读(197) 评论(0) 推荐(0)