随笔分类 -  Visual studio

1 2 3 4 5 ··· 7 下一页

有关Visual Studio2005、Visual Studio2008、Visual Studio2010的文章
Visual Studio 20年
摘要:43岁的我现在写程序的时间越来越少了,但我仍然喜欢静静写代码的感觉。Visual Studio 走过了20年,对于我,此刻深深怀念17年前那段和代码在一起的青葱岁月。 阅读全文

posted @ 2017-03-14 11:30 xjb 阅读(290) 评论(0) 推荐(0) 编辑

web developer tips (84):在Visual Web Developer中设置web网站的起始页
摘要:原文地址:How to set a Start page for your Web Site in Visual Web Developer? 如果你正在开发网站,为了测试网站你想启动某个特定的网页。默认的情况下,当你启动调试的时候,Visual Studio 2008运行的页面是设计器中当前激活的页面。 http://www.watch-life.net/visual-studio/set-a-... 阅读全文

posted @ 2010-04-08 09:34 xjb 阅读(450) 评论(0) 推荐(0) 编辑

web developer tips (83):通过反射从堆栈里获取调用的方法名称
摘要:原文地址:You can get the name of the calling method from the stack using reflection 几乎每个程序都需要一个日志来记录事件、错误和异常。有时候,在记录的事件里的方法名是很有用的,最简单的做法就是写一个“方法”,这个“方法”使用两个参数:调用的方法名和事件 http://www.... 阅读全文

posted @ 2010-04-06 09:38 xjb 阅读(511) 评论(0) 推荐(0) 编辑

web developer tips (82):Visual Studio 2005web应用项目迁移到Visual Studio 2008
摘要:原文地址:How to migrate Visual Studio 2005 Web Application Project to Visual Studio 2008 下面的步骤介绍如何把Visual Studio 2005的Web应用程序项目可以迁移到Visual Studio 2008: 1、备份原项目。 2、打开Visual Studio 2008。 3、单击“文件”... 阅读全文

posted @ 2010-04-02 09:36 xjb 阅读(356) 评论(0) 推荐(0) 编辑

web developer tips (81):为css的智能提示和属性选择css的模式
摘要:原文地址:How to Select the CSS Schema for Intellisense and CSS Properties 在Visual Studio 2008里,有个样式工具栏(Style Sheet Toolbar ),通过它允许选择使用的css模式(CSS Schema),如下图所示 但是这个设置只支持css的编辑器,不支持在aspx和html页面的智能提示。也不支持cs... 阅读全文

posted @ 2010-04-01 09:12 xjb 阅读(376) 评论(0) 推荐(0) 编辑

web developer tips (80):将javascript的错误显示为警告
摘要:原文地址:How to show JScript validation errors as warnings? 在Visual Studio 2008 RTM版本里,javascript的验证设置在html验证设置的选项里,从Visual Studio 2008 SP1 或更新的版本开始,增加了新的javascript选项对话框,有关这个设置详见:Introducing JScript Forma... 阅读全文

posted @ 2010-03-31 09:12 xjb 阅读(324) 评论(0) 推荐(0) 编辑

web developer tips (79):在web页面快速添加和取消注释
摘要:原文地址:How to quickly comment and uncomment in your web pages 在aspx、html、web.config等文件里注释选择行,可以单击工具栏的Comment(注释)/ Uncomment(取消注释)图标来实现。 http://www.watch-life.net/visual-studio/quickly-comment-and-uncomm... 阅读全文

posted @ 2010-03-30 10:08 xjb 阅读(439) 评论(0) 推荐(0) 编辑

web developer tips (78):使用文档大纲导航
摘要:原文地址:How to navigate using Document Outline? 通过菜单:视图+文档大纲,或者快捷键键Ctrl-Alt-T可以打开文档大纲。“文档大纲”(Document Outline)窗口提供当前文档中元素和脚本的大纲视图。文档大纲可以打开嵌套的分级元素和页面的脚本,很好显示页面的概览和分层结构。 http://www.watch-life.n... 阅读全文

posted @ 2010-03-29 09:52 xjb 阅读(373) 评论(0) 推荐(0) 编辑

web developer tips (77):在ASP.NET启动启动页面级跟踪
摘要:原文地址: How to enable Page Level Tracing for your ASP.NET pages 在调试Asp.net的web应用的时候,启动页面级跟踪,将会给一大串的有用信息。这些跟踪信息可以帮助我们理解控件在各种视图状态下的运行情况,比如PreInit(事件)的开始和结束时,Init事件的开始和结束状态,Render事件的开始和结束状态 等等。这些信息会出现在页面的底... 阅读全文

posted @ 2010-03-24 09:45 xjb 阅读(361) 评论(0) 推荐(0) 编辑

web developer tips (76):在设计视图隐藏非可视控件
摘要:原文地址:How to hide a non-visual control in your designer? 有时候,在构建web页面的时候,你想隐藏非可视控件,比如Timer 控件,是页面看起来很接近在浏览器呈现的样子。 使用快捷键Ctrl+Shift+N,可以在设计器中切换显示和不显示可视化控件。 http://www.watch-life.net/visual-studio/hide-a-... 阅读全文

posted @ 2010-03-23 09:30 xjb 阅读(259) 评论(0) 推荐(0) 编辑

web developer tips (75):PostBack后保持滚动条的位置
摘要:原文地址:How to maintain scrollposition after post back? 默认情况下,web页面提交返回(post back)后会返回页面的底部。对于一内容很多的页面,你可能需要在页面在提交返回后,滚动条自动滚到用户最后定位的位置。 在Asp.net里,可以通过使用页面的MaintainScrollPositionOnPostBack 属性可以实现上述需求。可以用下... 阅读全文

posted @ 2010-03-22 09:16 xjb 阅读(299) 评论(0) 推荐(0) 编辑

web developer tips (73): IIS搜索引擎优化工具包
摘要:原文地址:about IIS Search Engine Optimization (SEO) Toolkit Beta 注:翻译本文时IIS搜索引擎优化工具包已经发布正式版。 IIS的搜索引擎优化(SEO)工具包-是一个免费的工具包,帮助Web开发人员,托管服务提供商,和服务器管理员,通过对搜索引擎的友好性,提高在搜索结果中的网站的相关性。此seo的工具包可以通过 Microsoft Web P... 阅读全文

posted @ 2010-01-13 10:55 xjb 阅读(300) 评论(0) 推荐(0) 编辑

web developer tips (72): 在Windows 7中使用IIS远程管理器
摘要:原文地址:you can now manage Windows Server 2008 and Windows Server 2008 R2 from Windows 7 IIS的远程管理器(IIS Remote Manager)目前支持Windows 7。在此之前发布的版本,iis远程管理只支持XP,Vista,Windows Server 2003和Server 2008的(不包括Home B... 阅读全文

posted @ 2010-01-12 09:14 xjb 阅读(423) 评论(0) 推荐(0) 编辑

web developer tips (71): 关于FastCGI 1.5beta几个新配置设置
摘要:原文地址:there are several new configuration settings available in FastCGI Extension 1.5 Beta 以下是FastCGI 1.5beta的新配置: http://www.watch-life.net/visual-studio/there-are-several-new-configuration-settings-a... 阅读全文

posted @ 2010-01-08 09:16 xjb 阅读(520) 评论(0) 推荐(0) 编辑

web developer tips (70):使用命令脚本安装IIS7
摘要:原文地址: how to install win7 RC IIS through command script 注:原文是在windows 7rc 版本下用命令脚本来安装,不过2009年10月22日windows 7 已经正式发布了。因此本文没有用原文中的安装脚本命令。而是在查询有关资料后,使用下面通用的脚本命令。 http://www.watch-life.net/visual-studio/i... 阅读全文

posted @ 2009-12-04 10:06 xjb 阅读(437) 评论(0) 推荐(0) 编辑

web developer tips (69):vs中在浏览器中查看的快捷键
摘要:原文地址:The keyboard shortcut for View in Browser 按快捷键(keyboard shortcut)Ctrl +Shift+W可以在Visual Studio 2008 中启动“在浏览器中查看”。这个快捷键可以在菜单:文件+在浏览器中查看可以看见。 http://www.watch-life.net/visual-studio/the... 阅读全文

posted @ 2009-11-27 09:56 xjb 阅读(772) 评论(0) 推荐(0) 编辑

web developer tips (68):附加样式表到网页
摘要:原文地址:How simple it is to attach an existing style sheet to your web page? 在Visual Studio 2008里打开已经建好的网站,在解决方案管理器里,双击打开想附加样式表(css)的网页。 切换到设计视图,通过菜单:格式+附加样式表,打开“选择样式表”对话框。 http://www.watch-... 阅读全文

posted @ 2009-11-26 09:25 xjb 阅读(343) 评论(0) 推荐(0) 编辑

web developer tips (67):ASP.net MVC的快捷键列表
摘要:原文地址: Did you know the list of ASP.Net shortcuts? 1、添加 Controller -Ctrl-M Ctrl-C 添加示例Controller的对话框,可以很迅速为Asp.net MVC 应用添加controllers 。右键单击“Controllers'”或者按快捷键Ctrl-M Ctrl-C可以打开这个对话框。 http... 阅读全文

posted @ 2009-11-25 08:53 xjb 阅读(341) 评论(0) 推荐(0) 编辑

web developer tips (66):输入属性时自动插入引号
摘要:原文地址:how to insert quotes values automatically while typing the attrib values? 如果你想在添加属性(attribute )值时自动添加引号,这是很一个很好的节省时间的方法。设置方法如下: http://www.watch-life.net/visual-studio/insert-quotes-values-automa... 阅读全文

posted @ 2009-11-20 08:44 xjb 阅读(406) 评论(0) 推荐(0) 编辑

web developer tips (65): 快速创建一个挂接SQL表的GridView
摘要:原文链接:How to quickly create a GridView that is hooked up to a SQL table? 通常,在一个页面的GridView绑定数据,是添加一个数据源,再通过一个向导挂接到数据源。这里介绍一个更快捷的方法来创建和挂接到数据源的GridView。 http://www.watch-life.net/visual-studio/quickly-cr... 阅读全文

posted @ 2009-11-19 09:16 xjb 阅读(263) 评论(0) 推荐(0) 编辑

1 2 3 4 5 ··· 7 下一页

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示