自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(127)
  • 资源 (6)
  • 收藏
  • 关注

原创 remote_socket_api

iperf -B 99.99.3.1 -c 192.168.42.242 -p 10002 -f m -i 1 -P 1 -w 1M -u -b 1M -t 20iperf -B 192.168.42.242 -c 99.99.3.1 -p 10002 -f m -i 1 -P 1 -w 1M -t 6 -u -b 1M -riperf -B 99.99.3.1 -c 99.99.3....

2019-08-28 15:21:58 287

转载 C# ApartmentState 枚举,指定线程单元状态

1.ApartmentState指定的单元状态Thread。命名空间:System.Threading程序集:mscorlib(位于 mscorlib.dll)成员 成员名称 说明 MTA Thread将创建并进入一个多线程的单元。 STA Thread将创建并进入一个单线程单...

2019-08-26 18:33:14 510

原创 C#-HashSet不能插入相同对象

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace HashSetDemo{ class Program { static void Main(string[] a...

2019-08-22 21:54:36 303

原创 VB-字符串数组常用处理

Module Module1 Sub Main() Dim strs As String() = {" 1, ", " 2, ", " 3, "} strs = strs.Select(Function(s) s.Trim(New Char() {",", " "})).ToArray() Dim Res As St...

2019-08-22 11:39:20 3486

原创 C#-字符串数组常用处理

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApp2{ class Program { static void Main(string[] a...

2019-08-22 11:38:38 1538

原创 vb-sum

Module Module1 Sub Main() FuncDelegate() End Sub Public Sub FuncDelegate() Dim P_List_user As List(Of User) = New List(Of User)() P_List_user.Add(New User("小刘", 3...

2019-08-22 09:22:38 848

转载 3GPP协议下载地址

通信开发人员经常需要查看协议,3GPP协议官方查看和下载地址如下:(免费、英文)索引页面,对文档按照领域进行了分类:http://www.3gpp.org/specifications/specification-numbering下载规范的FTP根目录http://www.3gpp.org/ftp/Specs/3GPP规范采用WORD文件的ZIP压缩格式保存,文件名...

2019-08-21 17:26:48 592

转载 LTE带宽和子载波计算方式

按照子载波15KHz计算,一个PRB资源有12个子载波组成:带宽 prb数量 子载波20 100 120015 75 90010 50 6005 25 3003 15 1801.4 ...

2019-08-21 17:26:40 8268

原创 websocket 发送json

Module Module1 Sub Main() Try Dim m_IMSCOMAddress As String = "ws://" + "99.99.99.99" + ":9001" Dim m_ws = New RemoteCmdHelper(m_IMSCOMAddress) m_ws.m_...

2019-08-21 17:26:35 6177

原创 通过putty执行Linux命令

Module Module1 Dim m_RemoteServerAddr As String = "99.99.99.99" Sub Main() Try If Not My.Computer.Network.Ping(m_RemoteServerAddr, 1000) Then Console.WriteL...

2019-08-21 17:26:28 1380

原创 使用Function委托

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace UseFuncDelegate{ class Program { static void Main(string[] args) { ...

2019-08-21 17:26:19 494

原创 db-执行带回传参数的存储过程

if exists(select name from sysobjectswhere name='pro_out'and type='p')drop proc pro_outGOcreate procedure pro_out @id varchar(20), @name varchar(30), @sex int output --设置带返回值的参数asselec...

2019-08-21 17:26:10 2623

原创 分页打印

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-21 17:26:01 219

原创 自定义页码打印范围

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-21 17:25:48 853

原创 自定义横向或纵向打印

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-21 17:25:38 917

原创 图像打印

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace PhotoPrint{ public ...

2019-08-21 17:25:29 190

原创 打印窗体中的数据

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace PrintData{ public p...

2019-08-20 14:00:31 212

原创 返回元素集合中每个元素的属性

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Xml...

2019-08-20 14:00:23 398

原创 返回节点集合中每个节点的所有下级节点

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Xml...

2019-08-20 14:00:08 287

原创 返回节点集合中每个节点的所有上级节点

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Xml...

2019-08-20 14:00:02 249

原创 使用linq返回指定节点的父节点

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Xml...

2019-08-20 13:59:53 207

原创 使用linq返回指定节点下的注释

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Xml...

2019-08-20 13:59:44 84

原创 使用linq遍历指定节点下的所有对象

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Xml...

2019-08-20 13:59:34 312

原创 使用linq查询xml中指定属性的元素

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Xml...

2019-08-20 13:59:24 458

原创 对xml文件进行读取

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.IO;...

2019-08-20 13:59:15 288

原创 对dataset进行统计

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-20 13:59:06 721

原创 对dataset数据进行排序

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-19 09:22:11 1702

原创 对dataset进行查询前5名数据

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-19 09:22:00 452

原创 对Dataset进行元素操作

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-19 09:21:53 459

原创 对Dataset进行聚合操作

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-19 09:21:43 276

原创 将Dataset查询结果转换成DataView

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-19 09:21:35 806

原创 将dataset查询结果转换成DataTable

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-19 09:21:28 1111 1

原创 跳过dataset满足指定条件的记录

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-19 09:21:17 394

原创 跳过dataset中指定数量的记录

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-19 09:21:08 181

原创 从头开始提取Dataset满足指定条件的记录

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-19 09:21:00 222

原创 从头开始从DataSet提取指定数量的记录

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-19 09:20:53 438

原创 使用linq对dataset进行筛选操作

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-16 10:40:18 481

原创 使用linq查询dataset中的多个表

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-16 10:40:06 163

原创 使用linq对dataset进行投影操作

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-16 10:39:56 152

原创 使用linq查询dataset中的单个表

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Dat...

2019-08-16 10:39:27 142

Android 4高级编程(第3版)(完整书签).zip

Android 4高级编程第三版 带有完整书签,高清,很好用哦

2019-06-14

ASP.NET MVC 5高级编程 第5版(中文版带书签)

第1章入门 1.1ASP.NETMVC简介 1.1.1ASP.NETMVC如何适应ASP.NET 1.1.2MVC模式简介 1.1.3MVC在Web框架中的应用 1.1.4ASP.NETMVC5的发展历程 1.1.5ASP.NETMVC4概述 1.1.6开源发布 1.2ASP.NETMVC5概述 1.2.1OneASP.NET 1.2.2新的Web项目体验 1.2.3ASP.NETIdentity 1.2.4Bootstrap模板 1.2.5特性路由 1.2.6ASP.NET基架 1.2.7身份验证过滤器 1.2.8过滤器重写 1.3安装MVC5和创建应用程序 1.3.1ASP.NETMVC5的软件需求 1.3.2安装ASP.NETMVC5 1.3.3创建ASP.NETMVC5应用程序 1.3.4NewASP.NETProject对话框 1.4ASP.NETMVC应用程序的结构 1.4.1ASP.NETMVC和约定 1.4.2约定优于配置 1.4.3约定简化通信 1.5小结 第2章控制器 2.1控制器的角色 2.2示例应用程序:MVCMusicStore 2.3控制器基础 2.3.1简单示例:HomeController 2.3.2创建 第一个控制器 2.3.3控制器操作中的参数 2.4小结 第3章视图 3.1视图的作用 3.2视图的基础知识 3.3理解视图约定 3.4强类型视图 3.4.1ViewBag的不足 3.4.2理解ViewBag、ViewData和ViewDataDictionary 3.5视图模型 3.6添加视图 3.7Razor视图引擎 3.7.1Razor的概念 3.7.2代码表达式 3.7.3HTML编码 3.7.4代码块 3.7.5Razor语法示例 3.7.6布局 3.7.7ViewStart 3.8指定部分视图 3.9小结 第4章模型 4.1为MVCMusicStore建模 4.2为商店管理器构造基架 4.2.1基架的含义 4.2.2基架和实体框架 4.2.3执行基架模板 4.2.4执行基架代码 4.3编辑专辑 4.3.1创建编辑专辑的资源 4.3.2响应编辑时的POST请求 4.4模型绑定 4.4.1DefaultModelBinder 4.4.2显式模型绑定 4.5小结 第5章表单和HTML辅助方法 5.1表单的使用 5.1.1action和method特性 5.1.2GET方法还是POST方法 5.2HTML辅助方法 5.2.1自动编码 5.2.2辅助方法的使用 5.2.3HTML辅助方法的工作原理 5.2.4设置专辑编辑表单 5.2.5添加输入元素 5.2.6辅助方法、模型和视图数据 5.2.7强类型辅助方法 5.2.8辅助方法和模型元数据 5.2.9模板辅助方法 5.2.10辅助方法和ModelState 5.3其他输入辅助方法 5.3.1Html.Hidden 5.3.2Html.Password 5.3.3Html.RadioButton 5.3.4Html.CheckBox 5.4渲染辅助方法 5.4.1Html.ActionLink和Html.RouteLink 5.4.2URL辅助方法 5.4.3Html.Partial和Html.RenderPartial 5.4.4Html.Action和Html.RenderAction 5.5小结 第6章数据注解和验证 6.1为验证注解订单 6.1.1验证注解的使用 6.1.2自定义错误提示消息及其本地化 6.1.3注解的后台原理 6.1.4控制器操作和验证错误 6.2自定义验证逻辑 6.2.1自定义注解 6.2.2IValidatableObject 6.3显示和编辑注解 6.3.1Display 6.3.2ScaffoldColumn 6.3.3DisplayFormat 6.3.4ReadOnly 6.3.5DataType 6.3.6UIHint 6.3.7HiddenInput 6.4小结 第7章成员资格、授权和安全性 7.1安全性:无趣、但极其重要 7.2使用Authorize特性登录 7.2.1保护控制器操作 7.2.2Authorize特性在表单身份验证和AccountController控制器中的用法 7.2.3WindowsAuthentication 7.3要求角色成员使用Authorize特性 7.4扩展用户身份 7.4.1存储额外的用户资料数据 7.4.2持久化控制 7.4.3管理用户和角色 7.5通过OAuth和OpenID的外部登录 7.5.1注册外部登录提供器 7.5.2配置OpenID提供器 7.5.3配置OAuth提供器 7.5.4外部登录的安全性 7.6Web应用程序中的安全向量 7.6.1威胁:跨站脚本 7.6.2威胁:跨站请求伪造 7.6.3威胁:cookie盗窃 7.6.4威胁:重复提交 7.6.5威胁:开放重定向 7.7适当的错误报告和堆栈跟踪 7.7.1使用配置转换 7.7.2在生产环境中使用Retail部署配置 7.7.3使用专门的错误日志系统 7.8安全回顾和有用资源 7.9小结 第8章Ajax 第9章路由 第10章NuGet 第11章ASP.NETWebAPI 第12章应用AngularJS构建单页面应用程序 第13章依赖注入 第14章单元测试 第15章扩展ASP.NETMVC 第16章高级主题 第17章ASP.NETMVC实战:构建NuGet.org网站 17.11小结 附录AASP.NETMVC5.1

2018-07-09

ASP.NET 3.5动态网站开发基础教程源文件

ASP.NET 3.5动态网站开发基础教程源文件

2014-01-23

ASP.NET 3.5动态网站开发基础教程PPT

ASP.NET 3.5动态网站开发基础教程PPT

2014-01-23

21天学通C#所有源代码

21天学通C#源代码

2014-01-23

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除