对Google chrome OS 有点失望
2009-11-23 – 18:43
昨天在花了一点时间在虚拟机virtualbox装了一下Google Chrome OS,装完后用了一下,有些失望。
http://www.watch-life.net/googleapp/google-chrome-os-a-bit-disappointed.html
1、Google Chrome OS = Linux+ Google Chrome 浏览器 ? 操作系统就是个托,其实本质还是Chrome 浏览器。
2、无本地存储,只能用google的应用。这会不会是一种新的垄断呢?当然你可以说,它是开源的,你完全可以按自己的方式去定制,可普通用户可不会这么高级的定制。同时,无法离线使用,而且必须用Google的账户来登录。
3、除了上网,别的你啥也不能干。
有人......[阅读全文]
Tags: google, google chrome, microsoft, OS, virtualbox, vmware, 安装, 微软, 浏览器, 源码下载
分类: Google App | 5 条评论 »
web developer tips (66):输入属性时自动插入引号
2009-11-19 – 22:50
原文地址:how to insert quotes values automatically while typing the attrib values?
如果你想在添加属性(attribute )值时自动添加引号,这是很一个很好的节省时间的方法。设置方法如下:
http://www.watch-life.net/visual-studio/insert-quotes-values-automatically-while-typing-the-attrib-values.html
Visual Studio 2008 菜单:工具+选项+文本编辑器+HTML+格式,选中“键入时插入属性值引号”
现在,只要点击属性值的“=”(等号),编辑器将会插入一对引号,并显示属性值的智能能力提示。在智能提示(intellisense)里选择一个值后,光标就会跳出到引号外面......[阅读全文]
Tags: Attribute, intellisense, Visual Studio 2008, web developer tips, 属性, 智能提示
分类: Visual Studio | 没有评论 »
web developer tips (65): 快速创建一个挂接SQL表的GridView
2009-11-19 – 10:58
原文链接:How to quickly create a GridView that is hooked up to a SQL table?
通常,在一个页面的GridView绑定数据,是添加一个数据源,再通过一个向导挂接到数据源。这里介绍一个更快捷的方法来创建和挂接到数据源的GridView。
http://www.watch-life.net/visual-studio/quickly-create-a-gridview-that-is-hooked-up-to-a-sql-table.html
1、首先,如果没有数据源(datasource),你需要在服务器资源管理器(Server Explorer)添加一个。
2、完成上面一步,展开你想连接的表的节点,并找到想要挂接GridView的表。
3、最后,拖拽选中的表到webform,就这样......[阅读全文]
Tags: datasource, gridview, Server Explorer, web developer tips, 数据源, 服务器资源管理器
分类: Visual Studio | 没有评论 »
web developer tips (64): 在GridView中转换BoundField为TemplateField
2009-11-18 – 10:37
原文地址:How to convert a GridView column from asp:BoundField to asp:TemplateField in Design View
假定你有个数据源SqlDataSource1 ,绑定了一个简单的查询语句,返回Customers表的详细信息。
http://www.watch-life.net/visual-studio/convert-a-gridview-column-from-boundfield-to-templatefield.html
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:MyConnectionString %>"
SelectCommand="SELECT [FirstName], [LastName], [Email] FROM [Customers] ORDER BY
[FirstName]">
</asp:SqlDataSource>
在Visual Studio里,在web ......[阅读全文]
Tags: DetailsView, gridview, Visual Studio, web developer tips
分类: Visual Studio | 没有评论 »
web developer tips (63): 在web应用项目指定vs开发服务器端口
2009-11-15 – 23:59
原文地址:How to specify a fixed port for Visual Studio Development Server while using WAPs?
在web developer tips (21)讲述在网站项目中为 Visual Studio 开发服务器 (Development Server) 设置固定的端口。本tips将讲述如何为web应用项目配置固定的发布端口(port )。
http://www.watch-life.net/visual-studio/specify-a-fixed-port-for-visual-studio-development-server.html
1、打开web应用项目的属性页。右键单击web应用项目,在上下文菜单选择“属性”,打开属性页
2、在属性页选择“web”标签
3、在服务器选项里,选中“使用Visual Studio 开发服务器 ”项,选......[阅读全文]
Tags: Development Server, Visual Studio, web developer tips, 开发服务器, 端口
分类: Visual Studio | 没有评论 »
web developer tips (62):在vs工具箱添加AJAX控件工具包
2009-11-13 – 18:43
原文地址:How to add Ajax Control Toolkit to the toolbox
添加 Framework 3.5 SP1 版本 AJAX控件工具包(Ajax Control Toolkit)
下面的步骤在ASP.NET 3.5 中,为Visual Studio 2008 SP1的工具箱添加AJAX控件工具包。
http://www.watch-life.net/visual-studio/add-ajax-control-toolkit-to-the-toolbox.html
1、 下载AJAX控件工具包,下载地址:http://ajaxcontroltoolkit.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=27326
2、解压缩下载的zip文件。
3、启动Visual Studio 2008
4、打开或创建一个Asp.net 2.0 的web应用程序或网站。
5、右键单击工具箱,选择“添加选项卡”......[阅读全文]
Tags: ajax, Ajax Control Toolkit, Asp.net, Visual Studio 2008 SP1, web developer tips
分类: Visual Studio | 没有评论 »
web developer tips (61):如何创建Asp.net Dynamic Data网站
2009-11-09 – 19:12
原文地址:How to create an ASP.Net Dynamic Data Web Site
如果你的网站是大量数据来驱动的,那么,这里有个很简单而快速的方法来构建一个网站。条件是需要安装Visual Studio 2008 SP1 或者 Visual Web Developer 2008 Express SP1
Dynamic Data(动态数据) 网站利用的是被称为“脚手架(Scaffolding)”机制,利用这种机制可以让Asp.net通过数据模型,为数据表生成网页,生成的网页具有每个数据表的插入、删除和更新的功能。
以下为创建动态数据网站的步骤:
http://www.watch-life.net/visual-studio/create-an-asp-net-dynamic-data-web-site.html
1、创建......[阅读全文]
Tags: Asp.net, Dynamic Data, LINQ to SQL, O/R 设计器, Visual Studio 2008, web developer tips, 动态数据
分类: Visual Studio | 没有评论 »

