• c#获取当前应用程序所在路径

    一、获取当前文件的路径 1. System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName 获取模块的完整路径,包括文件名。 2. System.Environment.CurrentDirectory 获取和设置当前目录(该进程从中启动的目录)的完全限定目录。 3. System.IO.Directory.GetC...

    2018-06-17 22:06:30

  • Reflector、reflexil、De4Dot、IL指令速查表

    http://files.cnblogs.com/files/quejuwen/ReflectorInstaller.rar http://files.cnblogs.com/files/quejuwen/ReflectorCrack.rar http://files.cnblogs.com/files/quejuwen/reflexil.zip http://files.cnblogs.com/files/quejuwen/de4dot-v3-1.zip 名称 说明 Add 将两...

    2018-06-17 22:07:22

  • win10下vs2015创建asp,net core项目并运行在ubuntu14.

    上文说了.net core程序在win10与ubuntu下运行,用的是示例程序(https://github.com/aspnet/cli-samples),今天用vs2015 构建asp.net core mvc示例程序并运行下ubuntu下。 首先需要下载如下环境与软件至于下载还是32位还是64位根据你系统的了,本文基于64位。 1 .NET...

    2018-06-17 22:07:01

  • 参数化查询模糊查询

    1.参数化查询模糊查询 sql语句: create proc procegDataAp ( @UserName nvarchar(50) ) as select * from users where userName=@UserName 给参数赋值 new SqlParameter( " @UserName " , " % " +TxtsUserName.Text.Trim()+ " % " ) 1 %@ Page Language= " C# " AutoE...

    2018-06-17 22:06:53

  • MSCRM 获取列表所选记录相关信息

    问题:如何通过JS获取列表中所选记录信息? 解决办法: The CRM2011 Ribbon has a special set of parameters called 'CrmParameters' that provide information about the current session such as the selected rows in a sub-grid. We can use the 'SelectedControl...

    2018-06-17 22:06:44

  • Ado.net 三[SQL注入,DataAdapter,sqlParameter,Dat

    1.SQL注入:SQL注入攻击是web应用程序的一种安全漏洞,可以将不安全的数据提交给运用程序,使应用程序在服务器上执行不安全的sql命令。使用该攻击可以轻松的登录运用程序。 例如:该管理员账号密码为xiexun,该sql的正确语句应该为: select * from Users where userNa...

    2018-06-17 22:06:44

  • MongoDB 效率

    写入: 插入100万条数据:用InsertMany,耗时16s左右。 读取: 读取300万条数据,耗时3600毫秒。...

    2018-06-17 22:06:21

  • ASP.NET MVC4 传递Model到View

    原文发表在:http://www.star110.com/Note/ReadArticle/60641215331146140043.html 开发环境:.NET MVC4 + EF6.0 模型: 1 2 3 4 5 6 7 8 9 10 11 //Note列表数据 public class NoteData { public int Id{ set ; get ;} public StringAuthor{ set ; get ;} public Stri...

    2018-06-17 22:06:17

  • Newtonsoft.Json 用法

    Newtonsoft.Json 是.NET 下开源的json格式序列号和反序列化的类库.官方网站: http://json.codeplex.com/ 使用方法 1.首先下载你需要的版本,然后在应用程序中引用Newtonsoft.Json.dll 文件. 2.引用命名空间using Newtonsoft.Json; using Newtonsoft.Json.Linq; 使用示例...

    2018-06-17 22:06:21

  • datatable删除行

    先列出正确的写法,如果你只想马上改错就先复制吧, protected void deleteDataRow( int RowID,DataTable dt) { for ( int i = dt.Rows.Count - 1 ; i = 0 ; i-- ) { if (Convert.ToInt32(dt.Rows[i][ " RowID " ]) == RowID) dt.Rows.RemoveAt(i); } } /* 何问起 hove...

    2018-06-17 22:06:18

2