摘要: protected get rehearseId(): number { return parseInt(this.$route.query.rehearseId || ""); } 阅读全文
posted @ 2019-05-28 09:40 不是少年也游荡 阅读(371) 评论(0) 推荐(0) 编辑
摘要: (2)安装相应的.net framework 版本,自己机器上安装的是.net framework4.6.2 (3) 网站部署成功之后,浏览网站可能会出现以下错误: IIS7报错:如果要使用托管的处理程序,请安装ASP.NET 进入dos窗口,输入以下命令: "%WINDIR%\Microsoft. 阅读全文
posted @ 2018-12-04 23:54 不是少年也游荡 阅读(1263) 评论(0) 推荐(0) 编辑
摘要: VS低版本打开高版本创建的项目时会提示"选择的文件是解决方案文件,但是用此应用程序的较新版本创建的,无法打开"解决办法:写字板打开解决方案sln文件将其改成当前使用的VS版本即可vs2010改为:Microsoft Visual Studio Solution File, Format Versio... 阅读全文
posted @ 2015-05-20 22:19 不是少年也游荡 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 1.修改字体颜色//修改字体颜色SolidColorBrush brushred = new SolidColorBrush();//创建对象brushred.Color = Colors.Red;//调用方法2.注册事件和消息传递Messenger.Default.Register(this, "... 阅读全文
posted @ 2015-05-20 22:17 不是少年也游荡 阅读(154) 评论(0) 推荐(0) 编辑
摘要: XmlConfig.csnamespace Model{ [ Serializable] public class XmlConfig { [ XmlElement] public List Class1; [ XmlElement] ... 阅读全文
posted @ 2015-05-20 22:07 不是少年也游荡 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 1.js版本是高版本兼容低版本2.css等样式放在之间,js等代码放在之前。3.css中position的值需要注意 阅读全文
posted @ 2015-05-20 22:04 不是少年也游荡 阅读(126) 评论(0) 推荐(0) 编辑
摘要: //属性回显protected void OnPropertyChanging(string PropertyName){ if(PropertyChanging!=null) { PropertyChanging(this,new PropertyChangingEve... 阅读全文
posted @ 2015-05-20 21:59 不是少年也游荡 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 1 ZedGraph. LineItem curveCurrent ; 2 3 ZedGraph. PointPairList listCurrent= new ZedGraph.PointPairList(); 4 5 ZedGraph.Ze... 阅读全文
posted @ 2015-03-08 16:22 不是少年也游荡 阅读(151) 评论(0) 推荐(0) 编辑
摘要: //判断文件是否存在1 username;5 echo $js[0]->password;6 $username=$js[0]->username;7 $pwd=$js[0]->password;View Code//修改json文件的属性值1 $arr=array("ds","f");2 $js[... 阅读全文
posted @ 2015-03-08 16:20 不是少年也游荡 阅读(3627) 评论(0) 推荐(0) 编辑
摘要: //txt文件中只有一行数据读$fp = fopen("password.txt", "r");if($fp){ $pwd = fgets($fp);}else{ echo "打开文件失败";}fclose($fp); View Code//txt文件中只有一行数据 写 1 $fp ... 阅读全文
posted @ 2015-03-08 16:18 不是少年也游荡 阅读(2552) 评论(0) 推荐(0) 编辑