原地址:http://blog.csdn.net/jbjwpzyl3611421/article/details/12704491针对最近在移植window store项目中遇到的问题,我整理了官方说明,在此和各位开发者分享,避免在移植过程中走弯路!Platform status平台现状Curren...
方法一:web.config文件——设置:在web.config文件里添加关键字key是通过标记来实现的,但是appSettings标记通常放在.....标记外面。例:——读取:要在代码中引用这些数据库连接字符串,需要先添加对System.ConFiguration名字空间的引用,在这个名字空间中含...
分类:
Web程序 时间:
2014-06-26 23:48:51
阅读次数:
253
1.在git服务器界面右上角“+” 、create new project ,写上项目名字生成一个新的组2.如果机器第一次与git 建立连接,需要让机器生成一个id_rsa和id_rsa.pub 文件,然后无空格的打开.pub这个文件,复制到git服务器界面的my project ->SSH Key...
分类:
其他好文 时间:
2014-06-26 22:02:01
阅读次数:
260
转载地址:http://blog.csdn.net/donglynn/article/details/17056099错误SQL 查询:DELETE FROM `zmax_lang` WHERE CONVERT( `zmax_lang`.`lang` USING utf8 ) = 'fr' ...
分类:
其他好文 时间:
2014-06-26 21:31:40
阅读次数:
204
昨天刚给公司服务器装了LNMP服务器环境,在这里简单记录一下过程备忘。这里我在安装的时候是用的Dotdeb源,仅供参考。1.导入Dotdeb源,据说Dotdeb源里的软件版本比较新。在向源中导入Dotdeb前,我们需要先获取GnuPG key并导入:wget http://www.dotdeb.or...
分类:
数据库 时间:
2014-06-26 21:21:51
阅读次数:
334
生成私钥:openssl genrsa 1024 > private.key(注意,1024是密钥的长度,如果密钥较长,相应加密后的密文也会较长)生成公钥:openssl rsa -in private.key -pubout > public.key使用php的openssl 的函数加密和解密即可
分类:
Web程序 时间:
2014-06-26 21:11:01
阅读次数:
244
1. View the Exhibit and examine the structure of the SALES, CUSTOMERS, PRODUCTS, and TIMEStables.The PROD_ID column is the foreign key in the SALES ta...
分类:
其他好文 时间:
2014-06-26 20:12:39
阅读次数:
205
KVC/KVO1 KVC/KVO2 线程(GCP)
分类:
其他好文 时间:
2014-06-25 12:40:23
阅读次数:
109
终于被asp.net Mvc的目录结构搞晕了。还在它用不过是因为 ActionResult 的参数可以传一个自定义类型,不用 Request[key] 一个个赋值。现在搞出 webpage 的 InitModel(初始化一个自定义类型)。using Newtonsoft.Json;using Sys...
分类:
Web程序 时间:
2014-06-25 12:34:30
阅读次数:
159
create database ST;use st;create table Student(Sno varchar(10) primary key ,Sname varchar(15) ,Ssex varchar(2) ,Sage int ,Sdept varchar(10));create ta...
分类:
数据库 时间:
2014-06-25 09:43:01
阅读次数:
254