ENCTYPE="multipart/form-data"用于表单里有图片上传。
表单标签中设置enctype="multipart/form-data"来确保匿名上载文件的正确编码。 如下: ...
分类:
其他好文 时间:
2014-05-26 23:51:35
阅读次数:
375
在添加数据的时候有时因为数据条件不符合而页面的数据要重新输入比较麻烦,所以要做数据回显功能根据提供domain里的基本数据类写个类CustomerFormBean
.java 1 package cn.itcast.Controller; 2 3 import java.util.Date; 4 ....
分类:
其他好文 时间:
2014-05-26 23:24:12
阅读次数:
383
呵呵呵呵```csharpusing System;using
System.Collections.Generic;using System.ComponentModel;using System.Data;using
System.Drawing;using System.Linq;using ...
分类:
其他好文 时间:
2014-05-26 22:58:46
阅读次数:
352
toolBar上的View SwitcherBIDAppDelegate.h#import
@class BIDSwitchViewController;@interface BIDAppDelegate : UIResponder @property
(strong, nonatomic) UIW...
分类:
移动开发 时间:
2014-05-26 22:58:05
阅读次数:
383
已经无法再精简,适合入门。 1 #include 2 #include 3 4
#include 5 #include 6 #include 7 #include 8 struct mengc_dev{ 9 char data[64];10
struct cdev...
分类:
系统相关 时间:
2014-05-26 22:52:42
阅读次数:
371
iOS
屏幕方向那点事儿http://zhenby.com/blog/2013/08/20/talk-ios-orientation/针对当前的屏幕方向进行对应的代码布局BIDViewController.m#import
"BIDViewController.h"@interface BIDVie...
分类:
移动开发 时间:
2014-05-26 22:44:44
阅读次数:
353
DescriptionAccounting for Computer Machinists (ACM)
has sufferred from the Y2K bug and lost some vital data for preparing annual
report for MS Inc.All...
分类:
其他好文 时间:
2014-05-26 22:06:57
阅读次数:
213
很和谐精悍的一行快排代码quicksort1。
import random
def quicksort( list ):
if list == []:
return []
else:
cut = list[0]
lesser = quicksort( [ x for x in list[1:] if x < cut ]...
分类:
其他好文 时间:
2014-05-22 22:33:19
阅读次数:
402
MySQL默认的数据文件存储目录为/var/lib/mysql。假如要把目录移到/home/data下需要进行下面几步:1.在home下建立目录mkdir-p/home/data/mysql2.停掉mysqld服务/etc/init.d/mysqldstop3.把/var/lib/mysql目录下面的内容迁移到/home/data/mysql下面4。修改my.cnf配置文件如果/etc..
分类:
数据库 时间:
2014-05-22 18:26:05
阅读次数:
405
import re
data = open('a.txt')
fh = open('b.txt', 'w')
"""Search the string begining with '【'"""
p = re.compile(r'\s*[\u3010]')
for each_d in data:
if re.match('\s*3\d{4}', each_d):
...
分类:
编程语言 时间:
2014-05-22 17:26:17
阅读次数:
293