Tag: Tools预览模式: 普通 | 列表

免费的Asp.NET 编辑工具

免费的Asp.NET 编辑工具



免费编辑工具是 ASP.NET 最常用的HTML编辑工具. It is compatible with IE on the PC, and Mozilla and Firefox on all platforms. It is used in major Open Source projects such as Community Server and DotNetNuke as well as excellent packages like Smarter Mail.

查看更多...

Tags: Tools

分类:组件工具 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 725

举重若轻的ASP.NET开发工具——Web Matrix

  
  
         以所见即所得方式设计ASP.NET和HTML页面。直接从工具盒拖放控件到页面,双击控件自动生成事件代码。更牛的是,当你放置一个自定义控件(.ascx)到页面,Web Matrix会正确地绘制它,这一点连VS.NET都没有做到。当然你也可以修改控件属性,使之符合要求。

       支持MS SQL Server/MSDE和Access数据库。直接拖放数据库对象到页面,通过向导生成ADO.NET访问代码。而且你还可以通过内建工具管理数据库(包括数据库、数据表、关系、存储过程、记录的创建、修改、删除等)。

查看更多...

Tags: asp.net Tools

分类:下载 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 551

Web 开发少不了的五个小工具

发现了一些好东西,下面将其整理下载。
需要的朋友赶快下载吧,非常好用。


IconXP V3.10 Final┊汉化绿色版  www.fovly.com
ICO图标制作编辑工具,除了能快速制作编辑各种常见的标准图标外,更全面兼容WindowsXP,制作32色带8位的图标!是图标制作的好帮手!

查看更多...

Tags: Tools

分类:下载 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 712

开发者必备的10大工具

这篇文章已经不是什么新的文章了,但是这是我看到介绍最好的文章,所以摘录了供大家一起使用。
 
New information has been added to this article since publication.
Refer to the Editor's Update below.


.NET Tools

Ten Must-Have Tools Every Developer Should Download Now



This article discusses:
  • NUnit to write unit tests
  • NDoc to create code documentation
  • NAnt to build your solutions
  • CodeSmith to generate code
  • FxCop to police your code
  • Snippet Compiler to compile small bits of code
  • Two different switcher tools, the ASP.NET Version Switcher and the Visual Studio .NET Project Converter
  • Regulator to build regular expressions
  • .NET Reflector to examine assemblies
This article uses the following technologies:
.NET, C# or Visual Basic .NET, Visual Studio .NET


Contents


ou cannot expect to build a first-class application unless you use the best available tools. Besides well-known tools such as Visual Studio® .NET, there are a multitude of small, lesser-known tools available from the .NET community. In this article, I'm going to introduce you to some of the best free tools available today that target .NET development. I'll walk you through a quick tutorial of how to use each of them, some of which will save you a minute here and there, while others may completely change the way that you write code. Because I am squeezing so many different tools into this single article, I will not be able to cover each of them extensively, but you should learn enough about each to decide which tools are useful for your projects.


Snippet Compiler

The Snippet Compiler is a small Windows®-based application that allows you to write, compile, and run code. This tool is useful if you have small pieces of code for which you don't want to create an entire Visual Studio .NET project (along with all the files that come with it).

As an example, let's say that I wanted to show you how to launch another application from the Microsoft® .NET Framework. In the Snippet Compiler I would start by creating a new file which creates a small console application. The snippet can be created inside the Main method of the console application, which is what I will do here. The following code snippet demonstrates how to create an instance of Notepad from the .NET Framework:

System.Diagnostics.Process proc = new System.Diagnostics.Process();
            proc.StartInfo.FileName= "notepad.exe";
            proc.Start();
            proc.WaitForExit();
            
Of course this snippet would not compile by itself, but that is where Snippet Compiler comes into play. Figure 1 shows this code sample in Snippet Compiler.

 

Figure 1 Snippet Compiler
Figure 1 Snippet Compiler

To test this snippet, just press the play button (green triangle), and it will run in debug mode. The snippet will generate a console application popup, and Notepad will appear. When you close Notepad, the console application will close as well.

Personally, I have found Snippet Compiler to be invaluable when trying to create a small example for someone who has asked me for help, when normally I would have to create a project, make sure everything compiles, send them the code snippet, and then delete the project. Snippet Compiler makes this process much easier and much more pleasant.

查看更多...

Tags: .net Tools

分类:技术 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 604

.NET 常用工具

  1. Jetbrains ReSharper
  2. Microsoft FxCop
  3. SSW Code Auditor
  4. NUnit
  5. Jetbrains .NET Profiler
  6. NDoc
  7. Visual Build Professional
  8. C# to VB.NET converter
  9. VB.NET to C# converter
  10. SourceGear Vault
  11. .NET Reflector - a Decompiler for .NET
  12. Allocation Profiler
  13. CLR Spy for COM Interop
  14. Developer Express CodeRush
  15. Test Driven .NET

would you like your software to be considered for this list? Give us your details.

  1. Jetbrains ReSharper

    ReSharper was created with the single purpose in mind: to increase the productivity of C# developers. It comes equipped with a rich set of features, such as intelligent coding assistance, on-the-fly error highlighting and quick error correction, unmatched support for code refactoring, and a whole lot more. ReSharper's tight integration with Visual Studio .NET provides quick and easy access to all of its advanced features right from the IDE.

    • Error Highlighting
    • Error Quick-fixes
    • Refactoring Support
    • Live Templates

    Jetbrains ReSharper

    Figure: Inline error highlighting and fixes

    Jetbrains ReSharper

    Figure: Code generation

    Jetbrains ReSharper

    Figure: Pre-compile checking and syntax highlighting
    Jetbrains ReSharper

  2. Microsoft FxCop

查看更多...

Tags: .net Tools

分类:技术 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 765

Mstsc 远程控制 绿色工具




Mstsc
更新日期: 01/21/2005
  

查看更多...

Tags: 工具 Tools

分类:组件工具 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 3537

DevExpress 7.2.1 免注册


Developer Express公司是全球知名控件产品生产商,其.Net,C++ Builder与Delphi控件在全球拥有极高知名度
www.fovly.com
DevExpress公司产品套装,包含该公司所有.Net控件产品(包含Winform和WebForm),并含1年免费升级和相关产品的完整源码.
Developer Express 开发的ASPxGrid控件是一款基于C#语言开发的针对ASP.NET应用的表格控件工具。
ExpressBars组件是基于Dephi和C++Builder平台的工具条控件的新一代可视化控件库(VCL),菜单控件以及悬停系统控件。

查看更多...

Tags: DevExpress Tools 组件 .net

分类:组件工具 | 固定链接 | 评论: 4 | 引用: 0 | 查看次数: 2215

DevExpress 2.0 免注册


Developer Express公司是全球知名控件产品生产商,其.Net,C++ Builder与Delphi控件在全球拥有极高知名度
www.fovly.com
DevExpress公司产品套装,包含该公司所有.Net控件产品(包含Winform和WebForm),并含1年免费升级和相关产品的完整源码.
Developer Express 开发的ASPxGrid控件是一款基于C#语言开发的针对ASP.NET应用的表格控件工具。
ExpressBars组件是基于Dephi和C++Builder平台的工具条控件的新一代可视化控件库(VCL),菜单控件以及悬停系统控件。

查看更多...

Tags: DevExpress 工具 组件 .net Tools

分类:组件工具 | 固定链接 | 评论: 4 | 引用: 0 | 查看次数: 785

TlbImp.exe 工具

类型库导入程序 (Tlbimp.exe)

类型库导入程序将 COM 类型库中的类型定义转换为公共语言运行库程序集中的等效定义。Tlbimp.exe 的输出为二进制文件(程序集),该文件中包含在原始类型库中定义的类型的运行库元数据。可以使用诸如 Ildasm.exe 这样的工具检查此文件。


tlbimp tlbFile [options]

查看更多...

Tags: .net Tools

分类:组件工具 | 固定链接 | 评论: 1 | 引用: 0 | 查看次数: 1413

音频视频工具

制作自己的铃声,电影某一片段等等都是生活所常用的。下面整理一些软件供制作使用
www.fovly.com

工具一 MP3 分割器
提供mp3 切割和合并
只允许会员下载 该文件只允许会员下载! 登录 | 注册

查看更多...

Tags: 工具 Tools exe 音频 视频

分类:下载 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 638