当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > Some tips for using visual studio .net

ASP.NET
ASP.net Menu控件在Google Chrome和Safari浏览器下显示错位的解决办法
最简单的.NET生成随机数函数
asp.net 相关文章实现方法
asp.net 分页潜谈
asp.net(C#) Access 数据操作类
asp.net 编程 实用语句(6条)
ASP.NET 小技巧(2个)
asp.net Excel转换为SQL Server的方法
asp.net String.Empty NULL 不同之处
asp.net 防止SQL注入攻击
aspx 页面弹出窗口代码大全
asp.net 点击按钮提交后使按钮变灰不可用
asp.net得到本地电脑基本信息的简单方法
asp.net 点缩略图弹出随图片大小自动调整的页面
asp.net treeview checkbox 相关问题
asp.net 特定目录form验证
C# CUR类实现代码
asp.net gridview中用checkbox全选的几种实现的区别
asp.net 文件下载的通用方法
解决AJAX.NET中的悬停panel在页面加载时闪烁的问题

ASP.NET 中的 Some tips for using visual studio .net


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 170 ::
收藏到网摘: n/a


Visual studio is a powerful IDE for languages such as C#, C++.net, VB.net. However, because there are so many functions, it's a bit difficult for a developer to become familiar with visual studio.
It's my pleasure to introduce some tips. Also any comment or suggestions are welcome. Do not create web projects, create library projects instead.
When developing a web application, using visual studio will make the developing process a bit easier. However, it's much difficult to share web projects by a team, especially which are integrated with a source control system, since to open or compile a web project, IIS support is necessary.
Library projects are easy to be opened or compiled, be shared by team members, and be easily integrated with source control system.
To modify an existing web project as a library project, you can: Open the project file(.csproj), find the attribute ProjectType of the VisualStudioProject\CSHARP element, modidy "Web" as "Local". Delete the .webinfo file Using link files when you want to share some files among several projects.

To realize what is a link file, you can visit this page: Share a GlobalAssemblyInfo.cs among projects in a solution.
In the above article, I said that I didn't know how to create a link file from IDE directly. But actually, it's very simple. You can find that if you are carefull enough. To add a link file for a project, Right click a project's title and select Add Existing Item. Browse to the proper file, and on the Open button click on the little down arrow on the button and select Link File.