码迷,mamicode.com
首页 >  
搜索关键字:type    ( 51964个结果
使用 IntraWeb (40) - 自定义 Session 数据
修改 UserSessionUnit 单元:unit UserSessionUnit;interfaceuses IWUserSessionBase, SysUtils, Classes, IWApplication;type TIWUserSession = class(TIWUserSess.....
分类:Web程序   时间:2014-07-10 10:25:22    阅读次数:253
js弹出提示框并跳转页面
1。提示框有两个选择项,点确定跳转,取消停留在原页面ScriptManager.RegisterStartupScript(Page, this.GetType(), "", "", false);2.提示框只有一个确定按钮,跳转到指定页面ScriptManager.RegisterStartupS...
分类:Web程序   时间:2014-07-10 10:15:35    阅读次数:248
extract specified contents from two files.
src_dir=$(pwd)/All_hdst_dir=$(pwd)/Alldiff_dir=$(pwd)/diffif [ ! -d $diff_dir ]then mkdir $diff_dirfifor src_full_entry in $src_dir/*do src_cat_entry=...
分类:其他好文   时间:2014-07-10 10:07:49    阅读次数:241
NULL 的问题
UNKNOWN,空值,NULL值
分类:其他好文   时间:2014-07-10 00:51:43    阅读次数:333
EF Code First之数据迁移
1. Enable-Migrations -ContextTypeName MvcMovie.Models.MovieDBContext 2. add-migration Initial//Initial”是随意命名的,它用来命名创建好的迁移文件。3. update-database
分类:其他好文   时间:2014-07-10 00:10:21    阅读次数:233
iOS - 正则表达式判断邮箱、身份证..是否正确
//邮箱+ (BOOL) validateEmail:(NSString *)email{ NSString *emailRegex = @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}"; NSPredicate *emailTest = [.....
分类:移动开发   时间:2014-07-10 00:06:26    阅读次数:282
ListHelper
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Reflection;namespace Data_Helper{ ...
分类:其他好文   时间:2014-07-07 23:51:29    阅读次数:299
栈---链表实现
栈:是一种后进先出(LIFO)的结构,对其插入删除只能在栈顶进行;链表实现节点:#include#includetypedef struct Node *PtrToNode;typedef PtrToNode Stack;struct Node{ int Element; struct No...
分类:其他好文   时间:2014-07-07 23:48:05    阅读次数:224
sass的类型判定
由于sass的作者是rubyer,因此它的类型与JS有点不一样,但一样可以类推。@charset "utf-8";//必须设置了这个才能编译有中文的注释$gray: #333;//颜色$number: 12;//数字$boolean: true;$array:();$string:"string";...
分类:其他好文   时间:2014-07-07 23:40:02    阅读次数:209
EF数据库连接时候出错
users: EntityType: EntitySet 'users' is based on type 'UserModel' that has no keys defined.TreeLayer.DAL.UserModel: : EntityType 'UserModel' has no ke...
分类:数据库   时间:2014-07-07 22:20:05    阅读次数:620
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!