摘要: https://blog.csdn.net/hongweigg/article/details/78094338 问题 在前端编程中,突然出现Uncaught SyntaxError: Unexpected token “)”的错误,行号1。这个错误真的很隐晦,开始还以为是其他JS文件的错误,结果发 阅读全文
posted @ 2018-10-25 13:41 RobotTech 阅读(465) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/Javi/p/7274268.html 1. HttpWebRequest类的Proxy属性,只要设置了该属性就能够使用代理了,如下: 1 //设置代理 2 WebProxy WP = new WebProxy("41.76.44.76", 3128) 阅读全文
posted @ 2018-06-23 22:25 RobotTech 阅读(493) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/OwenZeng/p/6813143.html 阅读全文
posted @ 2018-02-06 14:58 RobotTech 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 关于.NET编译的目标平台(AnyCPU,x86,x64)(转) 今天有项目的代码收到客户的反馈,要求所有的EXE工程的目标平台全部指定成x86,而所有DLL工程的目标平台全部指定成AnyCPU 。 下面我们一起看看这个目标平台有什么作用,各选项有什么差别吧。 在VisualStudio中,在编译设 阅读全文
posted @ 2018-01-11 13:55 RobotTech 阅读(833) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/A-Song/archive/2012/01/26/2329715.html http://www.cnblogs.com/guyoung/archive/2011/10/20/2218647.html 阅读全文
posted @ 2017-09-28 14:19 RobotTech 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 一个小时学会Git http://www.cnblogs.com/best/p/7474442.html 阅读全文
posted @ 2017-09-11 10:28 RobotTech 阅读(274) 评论(0) 推荐(0) 编辑
摘要: @echo off call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd.bat" cd /d %~dp0 msbuild XXX.sln pause 阅读全文
posted @ 2016-11-08 14:34 RobotTech 阅读(500) 评论(0) 推荐(0) 编辑
摘要: event.preventDefault()用法介绍 该方法将通知 Web 浏览器不要执行与事件关联的默认动作(如果存在这样的动作)。例如,如果 type 属性是 "submit",在事件传播的任意阶段可以调用任意的事件句柄,通过调用该方法,可以阻止提交表单。注意,如果 Event 对象的 canc 阅读全文
posted @ 2016-08-04 16:50 RobotTech 阅读(8351) 评论(0) 推荐(0) 编辑
摘要: https://www.smartftp.com/support/kb/the-program-cant-start-because-api-ms-win-crt-runtime-l1-1-0dll-is-missing-f2702.html The program can't start beca 阅读全文
posted @ 2016-07-12 10:45 RobotTech 阅读(3082) 评论(0) 推荐(0) 编辑
摘要: http://www.tuicool.com/articles/jyyIBf3 http://blog.majcica.com/2016/04/07/visual-studio-code-behind-a-proxy/?utm_source=tuicool&utm_medium=referral T 阅读全文
posted @ 2016-07-12 10:44 RobotTech 阅读(1041) 评论(0) 推荐(0) 编辑
摘要: 1、对于string,number等基础类型,==和 是有区别的 1)不同类型间比较,==之比较“转化成同一类型后的值”看“值”是否相等, 如果类型不同,其结果就是不等 2)同类型比较,直接进行“值”比较,两者结果一样 2、对于Array,Object等高级类型,==和 是没有区别的 进行“指针地址 阅读全文
posted @ 2016-07-09 17:40 RobotTech 阅读(228) 评论(0) 推荐(0) 编辑
摘要: C# 5.0中引入了async 和 await。这两个关键字可以让你更方便的写出异步代码。 看个例子: public class MyClass { public MyClass() { DisplayValue(); //这里不会阻塞 System.Diagnostics.Debug.WriteL 阅读全文
posted @ 2016-07-07 10:56 RobotTech 阅读(297) 评论(0) 推荐(0) 编辑
摘要: Common User vs. Local User – 12c Editionhttp://dbasolved.com/2013/06/29/common-user-vs-local-user-12c-edition/ORA-65096: create 12c user without c## p... 阅读全文
posted @ 2015-01-26 10:43 RobotTech 阅读(321) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/aarond/p/deadlock.html 阅读全文
posted @ 2014-12-23 14:56 RobotTech 阅读(249) 评论(0) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/en-us/library/azure/gg433132.aspxTo initialize the storage emulatorClick theStartbutton or press theWindowskey. Begin typing... 阅读全文
posted @ 2014-12-22 10:56 RobotTech 阅读(311) 评论(0) 推荐(0) 编辑
摘要: http://baike.baidu.com/view/9602275.htm?fr=aladdinhttp://technet.microsoft.com/zh-cn/magazine/hh549175.aspxMicrosoft Fakes 提供了两种模拟类型成员的方式.以下两种方式的替代实现,... 阅读全文
posted @ 2014-07-14 10:32 RobotTech 阅读(340) 评论(0) 推荐(0) 编辑
摘要: http://stackoverflow.com/questions/1195030/why-is-this-name-not-cls-compliantTo get around this error you can either:Rename your property (recommended):protected bool isNew;Set your whole assembly to be non CLS compliant:[assembly:CLSCompliant(false)]Add an attribute just to your property:[CLSCompli 阅读全文
posted @ 2014-04-10 10:05 RobotTech 阅读(238) 评论(0) 推荐(0) 编辑
摘要: fsutil behavior QUERY DisableDeleteNotify 阅读全文
posted @ 2014-03-22 11:00 RobotTech 阅读(267) 评论(0) 推荐(0) 编辑
摘要: http://www.visualstudio.com/zh-cn/products/visual-studio-ultimate-with-msdn-vs#Fragment_SystemRequirements系统要求支持的操作系统Windows 8.1(x86 和 x64)Windows 8(x86 和 x64)Windows 7 SP1(x86 和 x64)Windows Server 2012 R2 (x64)Windows Server 2012 (x64)Windows Server 2008 R2 SP1 (x64)硬件要求1.6 GHz 或更快的处理器1 GB RAM(如果在虚 阅读全文
posted @ 2014-03-10 09:48 RobotTech 阅读(972) 评论(0) 推荐(0) 编辑
摘要: http://jingyan.baidu.com/article/d169e186800f02436711d87b.html如今用u盘装系统成为主流,如何不被社会淘汰。跟我往下边看吧~~工具/原料一个U盘,也可以是手机或数码相机内存卡通过读卡器与电脑连接;一个可引导的系统ISO镜像,可以是安装版、克隆版,可以是维护盘、WinPE等;刻录软件UltraISO,用单文件绿色版就可以了,金狐软件包里一直都有它;步骤/方法1启动UltraISO,点击“文件”菜单下的“打开”按钮,打开已准备好的ISO镜像文件,如JINHU_SYSTEM_TOOL_2009.iso2在UltraISO界面左下角的“本地目 阅读全文
posted @ 2014-03-08 21:44 RobotTech 阅读(813) 评论(0) 推荐(0) 编辑
摘要: 1.先安装Microsoft Visual Studio 2012旗舰版,安装包自己下载。系统必须是Win8 X64对于软硬件的检测可以参照:Windows Phone 8开发环境搭建之一、电脑硬件条件检测:http://www.silverlightchina.net/html/zhuantixilie/winphone7/2012/1122/20384.htmlWindows Phone 8开发环境搭建之二、安装win8操作系统:http://www.silverlightchina.net/html/zhuantixilie/winphone7/2012/1122/20383.html2 阅读全文
posted @ 2013-11-27 09:30 RobotTech 阅读(408) 评论(0) 推荐(0) 编辑
摘要: 自己消除insp小扳手方法具体步骤如下1.插入钥匙,不要转动。2.按住显示屏下方右边的黑圆柱按钮3.钥匙转到2档,通电自检,期间按住按钮不要松手4.过10秒左右,INSP消失,小扳手自己去除不用点火启动,只要通电就可以了可爱的小扳手不见了,也免去跑4S的麻烦了http://club.autohome.com.cn/bbs/thread-c-614-12555198-1.html?owner=1http://wenku.baidu.com/view/b50257661eb91a37f1115c4f.html 阅读全文
posted @ 2013-09-20 00:02 RobotTech 阅读(11696) 评论(0) 推荐(0) 编辑
摘要: http://bbs.pcbeta.com/viewthread-999730-1-1.html不管是桌面的图标还是资源管理器中的图标之前都出现了一个小小的方框。选中图标的时候会自动勾选那个框,如果是在一个文件夹中,最上面还有个勾选框,如果勾选那就是回答:那是因为你勾选了use check boxes to select items,取消的方法是:view--options--view--use check boxes to select items(去掉复选框)即可。 阅读全文
posted @ 2013-09-19 23:58 RobotTech 阅读(513) 评论(0) 推荐(0) 编辑
摘要: http://wozailongyou.iteye.com/blog/299311http://blog.allenm.me/2009/07/jquery%E4%B8%ADid%E5%92%8Cdocumentgetelementbyidid%E7%9A%84%E5%8C%BA%E5%88%AB/刚开始学习jQuery,可能一时会分不清楚哪些是jQuery对象,哪些是DOM对象。至于DOM对象不多解释,我们接触的太多了,下面重点介绍一下jQuery,以及两者相互间的转换。什么是jQuery对象?---就是通过jQuery包装DOM对象后产生的对象。jQuery对象是jQuery独有的,其可以使 阅读全文
posted @ 2013-09-06 17:21 RobotTech 阅读(251) 评论(0) 推荐(0) 编辑
摘要: Link:http://msdn.microsoft.com/en-us/library/windowsazure/ff951624.aspx Microsoft SQL Azure Database is the relational database service on the Windows Azure platform. Once you have created a database... 阅读全文
posted @ 2012-05-25 10:22 RobotTech 阅读(590) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/FreeDong/articles/2193151.html公司要启动一个新的项目,一套客户关系管理系统(CRM)。由于是WEB项目,程序代码非常分散,所以决定用vss来搞定。做过项目的也许都知道vss是做什么的吧,这里不多说言归正传,现在来描述一下vss的服务器及客户端的配置。现在用Microsoft.Visual.SourceSafe.2005 和 VS2005 来做实例。 一、服务器端: 安装完vss在开始菜单中有两个文件,Microsoft Visual SourceSafe Administration便是服务器端的应用程序。1、启动Mi 阅读全文
posted @ 2012-04-23 21:41 RobotTech 阅读(477) 评论(0) 推荐(0) 编辑
摘要: SQL Azure Migration Wizard v3.8.6, Index Out of Bounds http://sqlazuremw.codeplex.com/discussions/274112 阅读全文
posted @ 2012-04-20 14:14 RobotTech 阅读(2423) 评论(0) 推荐(0) 编辑
摘要: 错误信息: Type Microsoft.Reporting.WebForms.SyncList is an invalid collection type since it does not have a default constructor. 解决办法: http://msdn.microsoft.com/en-us/library/windowsazure/hh825825%2... 阅读全文
posted @ 2012-04-16 17:58 RobotTech 阅读(244) 评论(0) 推荐(0) 编辑
摘要: Hide/Show Items Dependant On Export Format (SSRS) http://blog.hoegaerden.be/2011/01/18/ssrs-hideshow-items-dependant-on-export-format/ Disable Page Break when exporting to excel in SSRS 2008 R2 h... 阅读全文
posted @ 2012-04-10 11:40 RobotTech 阅读(259) 评论(0) 推荐(0) 编辑
摘要: devenv.exe /ResetSettingsdevenv /resetuserdataLink:http://stackoverflow.com/questions/178846/visual-studio-intellisense-stopped-working 阅读全文
posted @ 2012-04-09 11:13 RobotTech 阅读(178) 评论(0) 推荐(0) 编辑
摘要: Greenwich Mean Time (GMT) Universal Time Coordinated(UTC) http://www.cnblogs.com/qiuyi21/archive/2008/03/04/1089456.html http://geography.about.com/od/timeandtimezones/a/gmtutc.htm 阅读全文
posted @ 2012-04-02 10:04 RobotTech 阅读(212) 评论(0) 推荐(0) 编辑
摘要: http://www.visualwin.com/IE-enhanced-security/ Looking for the Windows Server 2008 version of this tutorial? Click here. Preface: Windows Server 2003 shipped with security locked down by default. ... 阅读全文
posted @ 2012-04-02 09:40 RobotTech 阅读(1220) 评论(0) 推荐(0) 编辑
摘要: This document describes the release of ASP.NET MVC 4 Beta for Visual Studio 2010. Installation Notes Documentation Support Software Requirements Upgrading an ASP.NET MVC 3 Project to A... 阅读全文
posted @ 2012-03-30 13:44 RobotTech 阅读(660) 评论(0) 推荐(0) 编辑
摘要: 一 http://hi.baidu.com/zyb512/blog/item/28ed858b3b88c015c9fc7af9.html web Form 网页是基于HTTP的,它们没有状态, 这意味着它们不知道所有的请求是否来自 同一台客户端计算机,网页是受到了破坏,以及是否得到了刷新,这样就可能造成信息的 丢失。 于是, 状态管理就成了开发网络应用程序的一个实实在在的问题。 ... 阅读全文
posted @ 2012-03-29 09:42 RobotTech 阅读(448) 评论(0) 推荐(0) 编辑
摘要: 一、认识Web.config文件 Web.config 文件是一个XML文本文件,它用来储存 ASP.NET Web 应用程序的配置信息(如最常用的设置ASP.NET Web 应用程序的身份验证方式),它可以出现在应用程序的每一个目录中。当你通过.NET新建一个Web应用程序后,默认情况下会在根目录自动创建一个默认的 Web.config文件,包括默认的配置设置,所有的子目录都继承它的配置设置... 阅读全文
posted @ 2012-03-29 09:41 RobotTech 阅读(872) 评论(2) 推荐(4) 编辑
摘要: 1). Tasks—Generate Scripts 2). In the “Generate and Publish Scripts” dialog, Next -- Next 3).Click “Advanced”, set likes following: 阅读全文
posted @ 2012-03-28 09:52 RobotTech 阅读(286) 评论(0) 推荐(0) 编辑
摘要: http://clumsyleaf.com/products/cloudxplorerhttp://clumsyleaf.com/products/tablexplorerhttp://clumsyleaf.com/products/azurexplorer 阅读全文
posted @ 2012-03-22 22:31 RobotTech 阅读(228) 评论(0) 推荐(0) 编辑
摘要: http://www.intertech.com/Blog/post/Windows-Azure-Table-Storage-vs-Windows-SQL-Azure.aspxBy Jim White (Director of Training and Instructor) Last week, my fellow Intertech colleague and Microsoft MVP, Tim Star, and I presented the Windows Azure Bootcamp for the Twin Cities. According to Microsoft rep. 阅读全文
posted @ 2012-03-19 17:43 RobotTech 阅读(812) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/dudu/archive/2011/01/29/entity_framework_connection_string.htmlEntity Framework使用的连接字符串与ADO.NET是不同的,见下图: 相比于ADO.NET,Entity Framework的连接字符串不仅要存放metadata配置信息,还要存放完整的数据库连接字符串(上图中的"provider connection string"部分)。 这样的设计有两个不足之处: 1. 连接字符串配置复杂; 2. 无法重用现有的ADO.NET数据库连接字符串。 我觉得 阅读全文
posted @ 2012-03-14 15:29 RobotTech 阅读(724) 评论(0) 推荐(0) 编辑
摘要: http://www.dotnetperls.com/post-pre-build-macrosYou need to use post-build and pre-buildmacrosin Microsoft Visual Studio 2008. You may have two projects that rely on each other but are separate. We can write a macro to copy files from one project to another after the first one is built.This page pro 阅读全文
posted @ 2012-03-12 09:58 RobotTech 阅读(1199) 评论(0) 推荐(0) 编辑