.net
文章平均质量分 62
hello_katty_xx00
11
展开
-
WCF messageheader校验头
客户端ServiceTokenValidation.DinoTechDataSyncServiceClient client = new ServiceTokenValidation.DinoTechDataSyncServiceClient(); using (OperationContextScope scope = new OperationContextScope(client.I原创 2016-05-03 16:34:05 · 659 阅读 · 0 评论 -
mvc4源码调试“未能加载文件或程序集“System.Web.Mvc”或它的某一个依赖项。未能验证强名称签名。解决办法
环境vs2015+win7x64+.net 4.5system.web.mvc中版本改成4.0.0.1个人测试mvc项目中根目录web.config改 views/web.config中改原创 2016-12-23 15:44:32 · 14038 阅读 · 0 评论 -
VS2015无法启动 IIS Express Web解决办法,服务器
今天发现启动不了iis express 服务器系统日志显示修改端口后重新启动ok原创 2017-02-24 09:54:02 · 1812 阅读 · 0 评论 -
.net mvc区域同名controller和action路由配置,首页指定默认主页到区域页面
RouteConfigpublic class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); // r原创 2017-04-26 10:53:39 · 4438 阅读 · 0 评论 -
分析器错误 “/”应用程序中的服务器错误 请在类型名称中显式指定程序集。
错误提示“/”应用程序中的服务器错误。分析器错误说明: 在分析向此请求提供服务所需资源时出错。请检查下列特定分析错误详细信息并适当地修改源文件。 分析器错误消息: 类型“Humanrace.WebAPIMain.WebApiApplication”不明确: 它可能来自程序集“E:\Code Workspace\Humanrace_Project\Code\WebAPIM原创 2017-06-21 16:20:20 · 10528 阅读 · 1 评论 -
c# https get请求 基础连接已关闭,接受时发生错误 解决方法
用HttpWebRequest模拟发送https请求,提示错误: 基础连接已关闭,接受时发生错误在本地测试ok,开发环境为64位win7 vs2013 发布到windows server 2008 x86系统上运行一直报错。。下载2008 r2 x64运行发现数据正常。。public static string GetUrl(string url) { ...原创 2018-03-04 18:50:51 · 9865 阅读 · 3 评论 -
EntityFramework 优化建议
EntityFramework 优化建议原文地址 http://blog.jd-in.com/947.htmlEntity Framework目前最新版本是6.1.3,当然Entity Framework 7 目前还是预览版,并不能投入正式生产环境,估计正式版16年第一季度会出来,了解过EF7的部分新特性后,还是狠狠期待一下滴。EF性能问题一直为开发者所诟病,最让人纠结的也是这块,所以此次我也来谈...转载 2018-07-11 22:53:13 · 546 阅读 · 0 评论 -
Entity Framework 实体关系总结:one-to-one, one-to-many, many-to-many
Entity Framework 实体关系总结:one-to-one, one-to-many, many-to-many通过 Entiy Framework实践系列 文章,理了理 Entity Framework 的实体关系。https://www.cnblogs.com/dudu/archive/2011/07/11/ef_one-to-one_one-to-many_many-to-many...转载 2018-07-14 18:24:02 · 1043 阅读 · 0 评论 -
c# socket-udp通信聊天winform程序
之前一直想模仿飞秋(飞Q)写一个简易得通信程序练手,熟悉sokect通信。主要实现功能:简易得聊天窗体,发送消息,发送震动,发送文件(可拓展)话不多说,直接上代码吧。登陆窗体:二个用户分别监听不同得端口9000,9001来测试using System;using System.Collections.Generic;using System.ComponentMod...原创 2019-01-26 11:22:46 · 1714 阅读 · 0 评论