无标题页 using System;using System.Data;using
System.Configuration;using System.Collections;using System.Web;using
System.Web.Security;using Syste...
分类:
Web程序 时间:
2014-05-08 13:55:40
阅读次数:
686
一个框架应该是多例的,不是单例的,所以属性和方法分为两种:1.
实例属性\方法:实例的属性,例:ids,getElement,validator,render2.
通用属性\方法:通用的属性和方法,所有的实例都共用的例:pp.use, pp.domain,pp.pop,pp.data, pp.hoo...
分类:
Web程序 时间:
2014-05-08 13:52:14
阅读次数:
369
1、doctype新模块必须使用下面的doctype2、img标签的src值不能为空如果img有src属性,则值不能为空。如:IE(6/7/8)系列浏览器会认为src指向的是当前服务器的根目录,会重新发次请求。如果用到了lazyload的话,可以使用data-src属性。如:具体的分析请见这里3、i...
分类:
Web程序 时间:
2014-05-08 12:37:15
阅读次数:
388
背景:项目中已运行10年的数据访问层,存在若干架构方面的问题,为了彻底解决并释放并行访问的能力,并提供一套完整的面向对象的API,决定重新设计。思考问题:1.如何保证兼容性:
1)使用新库的实现替代旧库中的实现,保证一次性全部修改并测试,不修改旧库的API,且提供用户新的API 2)新库与旧...
分类:
数据库 时间:
2014-05-08 12:21:18
阅读次数:
315
安装插件request,iconv-lite。zlib內置。1、设置请求参数中的encoding为null,这样传入回调函数中的body将是一个buffer。(默认为utf8编码)2、用zlib.gunzip()方法对body进行解压,解压的到的依然是个buffer。request({ uri:
u...
分类:
Web程序 时间:
2014-05-08 12:19:22
阅读次数:
851
1、创建用户并指定表空间create user gy_3004 identified by
gy_3004 default tablespace gy_3004_data temporary tablespace gy_3004_temp;
2、给用户授予权限--方式一: GRANT CREA...
分类:
数据库 时间:
2014-05-08 12:18:54
阅读次数:
412
这是微软官方教程Getting Started with Entity Framework 6
Code First using MVC 5 系列的翻译,这里是第六篇:为ASP.NET MVC应用程序创建更复杂的数据模型原文:Creating a More
Complex Data Model fo...
分类:
Web程序 时间:
2014-05-08 12:03:22
阅读次数:
581
mysql -h10.81.32.196 -P5152 -Dns_map_data_new
-uwangyuchuan_r -p3DLg15rhSsm0O7Nsselect uid,name from t_area_info where
uid=1960;
分类:
其他好文 时间:
2014-05-08 12:00:24
阅读次数:
247
//文件远程下载 WebClient client = new WebClient(); Uri
uri = new Uri(url); client.DownloadFile(Uri uri,String
filename);//文件一定得存在不然会报错所以在删除文件时先判断这个文件是否存...
分类:
其他好文 时间:
2014-05-07 21:07:37
阅读次数:
284
1 调用发送短信功能:Uri smsToUri =
Uri.parse("smsto:");Intent sendIntent = new Intent(Intent.ACTION_VIEW,
smsToUri);sendIntent.putExtra("address", "123456");//...
分类:
移动开发 时间:
2014-05-07 20:37:58
阅读次数:
639