02 2016 档案

摘要:1.首先需要下载apachi,apache_2.2.22.msi 2.双击安装包进行安装,安装过程中可能出现一些选择性问题,将重点部分截图如下: 说明:这三个内容就按如上输入即可。 说明:选择自定义安装方式 说明:需要将Apache HTTP Server 2.2.25全部安装,同时路径修改为我们比 阅读全文
posted @ 2016-02-29 10:04 段江涛IT 阅读(240) 评论(1) 推荐(0) 编辑
摘要:应用程序配置文件,对于asp.net是 web.config,对于WINFORM程序是App.Config(ExeName.exe.config)。 配置文件,对于程序本身来说,就是基础和依据,其本质是一个xml文件,对于配置文件的操作,从.NET 2.0 开始,就非常方便了,提供了 System  阅读全文
posted @ 2016-02-25 09:37 段江涛IT 阅读(1780) 评论(0) 推荐(0) 编辑
摘要:C#写入记事本(txt)文件方法一: FileStream stream = new FileStream(@"d:\aa.txt",FileMode.Create);//fileMode指定是读取还是写入 StreamWriter writer = new StreamWriter(stream) 阅读全文
posted @ 2016-02-23 15:38 段江涛IT 阅读(6899) 评论(0) 推荐(0) 编辑
摘要:255) fc=255; if(bc>255) bc=255; //产生三个随机数,然后定义出一种颜色 int r=fc+random.nextInt(bc-fc); int g=fc+random.nextInt(bc-fc); int b=fc+random.nextInt(bc-fc); return new Color(r,g,b); } %> 阅读全文
posted @ 2016-02-23 15:29 段江涛IT 阅读(465) 评论(0) 推荐(0) 编辑
摘要:--创建登录账户和数据库用户 exec sp_addlogin 'sysAdmin','123456' exec sp_grantdbaccess 'sysAdmin','aa' --给数据库用户赋权限 grant select,update,insert,delete on userInfo to 阅读全文
posted @ 2016-02-04 13:26 段江涛IT 阅读(644) 评论(0) 推荐(0) 编辑
摘要:在windows7中打开DNN网站有以下问题: CS0016: 未能写入输出文件“c:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\life\ab8f2a32\c1abfcbc\App_Web_login.as 阅读全文
posted @ 2016-02-04 13:24 段江涛IT 阅读(1407) 评论(0) 推荐(0) 编辑
摘要:实体类如下: public enum ESex { Boy, Girl } public class Person { public String Name { get; set; } public String Address { get; set; } public String Age { g 阅读全文
posted @ 2016-02-03 17:30 段江涛IT 阅读(5659) 评论(0) 推荐(1) 编辑
摘要:1.使用微软自带的System.Web.Extensions.dll转换,该DLL文件一般存在于如下路径:c:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Web.Extensions.dll 具体操作如下: 阅读全文
posted @ 2016-02-03 17:18 段江涛IT 阅读(8721) 评论(0) 推荐(0) 编辑
摘要:要实现EditText的自动换行需要实现如下设置: <EditText android:id="@+id/function_lifingcost_edit_txtRemark" android:layout_width="fill_parent" android:layout_height="wra 阅读全文
posted @ 2016-02-02 13:59 段江涛IT 阅读(6738) 评论(0) 推荐(0) 编辑
摘要:1.在运行里面输入cmd调出dos窗口,然后在dos窗口中输入sqlplus /nolog 如:D:\oracle\ora92\bin>sqlplus /nolog 2.输入连接命令 如:SQL> conn /as sysdba 3.修改密码 如:alter user system identifi 阅读全文
posted @ 2016-02-01 14:41 段江涛IT 阅读(884) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections; using System.Text; using System.Net; using System.Net.Mail; namespace NetMailSend { class Programe { /// <summ 阅读全文
posted @ 2016-02-01 10:15 段江涛IT 阅读(231) 评论(0) 推荐(0) 编辑

页脚HTML代码