摘要:
问题原因:Could not load file or assembly 'System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its depe 阅读全文
摘要:
几个类型碰撞器:1. 静态碰撞器: 就是只有碰撞器,但没有刚体的2.刚体碰撞器: 带Rigidbody的碰撞器,这个是最基本的碰撞器3.运动学刚体碰撞器: 带Rigidbody, 而且Rigidbody的IsKinematic打勾的,注意这个碰撞器是不能加力的,只能修改他的transform才能移动... 阅读全文
摘要:
转自http://blog.163.com/m13864039250_1/blog/static/21386524820133254431945/ 阅读全文
摘要:
项目有遇到需要导出Word,在别人写好的基础上去修改样式,导出后发现样式不正确不整齐,于是采用模板的方式重新导出1.模板word文件的制作,本人用office2013,在设计好需要的整个表格之后,在你需要替换的位置"插入"--书签 并命名,此命名需要在程序中进行替换将做好的模板word文件放在程序目... 阅读全文
摘要:
using System;using System.Data;using System.Xml;using System.Data.SqlClient;using System.Collections;using System.Configuration;namespace Beyondbit.CM... 阅读全文
摘要:
1 string[] arr=Regex.Split(strValue, @"\s+") View Code分隔带空格的字符串 去掉空格 字符串数组 阅读全文
摘要:
select top 8 name,unit,opinion,Comments, case when [createtime]<dateadd(hh,1,[createtime])then '1小时前' when [createtime]<dateadd(day,1,[createtime]) then '1天前' when [createtime]<dateadd(MONTH,1,[createtime]) then '一个月前' when [createtime]<dateadd(YEAR,1,[createtime] 阅读全文
摘要:
=IF(COUNTIF(A$1:A$300,A1)/COUNTIF(A1:A$300,A1)>1,"重复","不重复") 阅读全文
摘要:
1 function checkCardId(socialNo){ 2 3 if(socialNo == "") 4 { 5 alert("输入身份证号码不能为空!"); 6 return (false); 7 } 8 9 if (socialNo.length != 15 && socialNo.length != 18) 10 { 11 alert("输入身份证号码格式不正确!"); 12 return (false); 13 } 14 15 var area={11:"北京",1... 阅读全文