`
xiaoer_1982
  • 浏览: 1864252 次
  • 性别: Icon_minigender_2
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

Atlas基础-在Visual Studio.net中创建和添加Atlas特征

阅读更多

Creating an ASP.NET "Atlas" Project in Visual Studio

After installing the "Atlas" files and the "Atlas" Visual Studio project template, you can create a new Web site in Visual Studio 2005 that is configured with "Atlas" features.

To create a new "Atlas" Web site:

  1. Start Visual Studio.
  2. On the File menu, click New Web Site. (Alternatively, click New, and then click Web Site.)
  3. Under My Templates, select ASP.NET 'Atlas Web Site.
  4. Select the location for your installation, select the language you want to use for the Web site, and enter or browse to the local path where you want to create the Web site:

    ASP.NET 'Atlas' installer

  5. Click OK.

When you create a new "Atlas" Web site, Visual Studio copies the "Atlas" run-time assembly from its installation location to the Web site's Bin folder. Visual Studio also generates a Web.config file that is preconfigured with settings required to run "Atlas" applications.

Adding "Atlas" Features to an Existing ASP.NET Application

You can add "Atlas" capabilities to your existing ASP.NET applications.

To add "Atlas" features to an ASP.NET application:

  1. Open the ASP.NET application in Visual Studio.
  2. Copy the "Atlas" run-time assembly (Microsoft.Web.Atlas.dll) from its installation folder to the application's Bin folder. By default, the "Atlas" assembly is installed in this location:

    C:\Program Files\Microsoft ASP.NET\Atlas\v2.0.50727\Atlas

  3. Open the Web.config file in the "Atlas" default location.
  4. Copy elements required for "Atlas" to the Web.config file in your application's root folder.

    Copy these elements as children of the <configuration> element:

      <configSections>
        <sectionGroup name="microsoft.web" type="Microsoft.Web.Configuration.MicrosoftWebSectionGroup">
          <section name="converters" type="Microsoft.Web.Configuration.ConvertersSection"/>
        </sectionGroup>
      </configSections>
    
      <microsoft.web>
        <converters>
          <add type="Microsoft.Web.Script.Serialization.Converters.DataSetConverter"/>
          <add type="Microsoft.Web.Script.Serialization.Converters.DataRowConverter"/>
          <add type="Microsoft.Web.Script.Serialization.Converters.DataTableConverter"/>
        </converters>
      </microsoft.web>

    Copy (or integrate) these elements as children of the <system.web> element:

        <pages>
          <controls>
            <add namespace="Microsoft.Web.UI" assembly="Microsoft.Web.Atlas" tagPrefix="atlas"/>
            <add namespace="Microsoft.Web.UI.Controls" assembly="Microsoft.Web.Atlas" tagPrefix="atlas"/>
          </controls>
        </pages>
    
        <!-- ASMX is mapped to a new handler so that proxy javascripts can also be served. -->
        <httpHandlers>
          <remove verb="*" path="*.asmx"/>
          <add verb="*" path="*.asmx" type="Microsoft.Web.Services.ScriptHandlerFactory" validate="false"/>
        </httpHandlers>
        <httpModules>
          <add name="ScriptModule" type="Microsoft.Web.Services.ScriptModule"/>
        </httpModules>
  5. Close all files.
分享到:
评论

相关推荐

    ATLAS-PF600

    在标签"Atlas PF600 读扭矩"中,我们可以推测存在一个名为"AtlasRead"的应用程序或者库,专门设计用于与ATLAS-PF600设备通信,读取并处理扭矩数据。这个程序可能采用了某种标准的通信协议,如Modbus TCP/IP或OPC UA...

    跟我一起学Visual Studio 2005(6):ASP.NET 2.0 内部改进

    7. **AJAX支持**:虽然Visual Studio 2005本身并不包含完整的AJAX支持,但微软通过ASP.NET AJAX扩展(以前称为Atlas)为开发人员提供了创建异步交互Web应用程序的能力。 8. **内置缓存机制**:ASP.NET 2.0增强了...

    visual studio2010-2015编译部署caffe

    总结来说,要在Windows上编译和部署Caffe,你需要准备和配置一系列的依赖库,创建和编译Visual Studio项目,最后通过示例代码测试Caffe的功能。这个过程可能需要一些耐心和调试,但一旦完成,你就可以在Windows环境...

    ASP.NET2.0快速入门教程

    ASP.NET 2.0是微软开发的一个用于构建Web应用程序的框架,它是在.NET Framework 2.0的基础上构建的。这个快速入门教程旨在帮助初学者快速理解并掌握ASP.NET 2.0的核心概念和技术,以便能够高效地开发动态网页。 1. ...

    visual studio 2005培训课件

    三、Visual Studio 2005在Web开发中的应用 1. Web服务:支持创建和消费XML Web服务,通过SOAP协议实现跨平台通信。 2. AJAX支持:虽然VS2005本身不直接支持AJAX,但可以通过第三方库如Atlas(后来发展为jQuery)...

    《ASP.NET 2.0 Visual Web Developer 2005》 程序开发

    7. **错误处理和调试**:了解如何在ASP.NET中处理和调试代码,包括使用Visual Studio的调试工具。 8. **安全性**:学习如何实施身份验证、授权和角色管理,以确保Web应用的安全性。 9. **Web服务和WCF**:探讨如何...

    asp.net完全入门

    - **控件与事件模型**: ASP.NET中的服务器控件可以响应用户交互,通过事件模型实现页面间的交互。 2. **开发环境** - **Visual Studio**: 微软的集成开发环境(IDE),为ASP.NET开发提供了强大的支持,包括代码...

    ASP.NET程序开发范例宝典源码

    在Visual Studio 2005这个版本中,ASP.NET已经发展到2.0版本,引入了许多新特性和改进。例如: 1. **控件生命周期**:ASP.NET控件拥有一个完整的生命周期,包括初始化、加载、验证、呈现和卸载等阶段,这对于理解和...

    ASP.NET 2.0应用程序添加ASP.NET AJAX 组件引用之web.config配置

    ASP.NET 2.0在发布时虽然不包含内置的AJAX支持,但通过引入ASP.NET AJAX框架(原名Atlas),开发者可以为他们的Web应用程序添加异步交互和丰富的用户体验。本篇将详细介绍如何在ASP.NET 2.0应用程序中配置web.config...

    ASP.NET.2.0.编程-------珠玑

    本章通过具体实例讲解了如何在ASP.NET 2.0中实现这些功能,特别是利用ATLAS(后来改名为ASP.NET AJAX)来增强用户体验。 #### 第5章:调试技术 第五章介绍了ASP.NET 2.0中的一些新调试技术,包括如何更高效地查看...

    asp.net组件RadControls的Bin包

    telerik 的 r.a.d.controls 套装是一款最具革命性和广泛性的开发工具集,它主要针对专业级的 ASP.NET 开发,适用于 AJAX, Atlas 、Visual Studio .NET 2005 、Visual Studio 2008 及 ASP.NET 3.5。通过该产品的强大...

    零基础学ASP.NET.2.0

    在《零基础学ASP.NET.2.0》的教程中,你将逐步学习如何设置开发环境,创建第一个ASP.NET Web应用程序,掌握控件使用,理解数据绑定和源码视图,以及如何利用母版页和站点地图来规划网站结构。此外,还会深入探讨配置...

    Atlas控件

    2. **安装与配置**:AtlasSetup.msi文件是Atlas控件的安装程序,通过运行这个MSI文件,可以在Visual Studio环境中添加对Atlas的支持。安装后,开发者可以在项目中引用相关的DLL文件,如System.Web.Extensions,以便...

    asp.net 2.0快速入门教程

    ASP.NET 2.0是微软开发的一个用于构建Web应用程序的框架,它建立在.NET Framework之上,为开发者提供了更高效、更易用的...在这个快速入门教程中,你将逐步了解并掌握这些核心概念,为后续的ASP.NET开发打下坚实基础。

    Asp.net Overview

    现在,开发者可以直接指向一个目录,开始编写页面和代码,无需在Visual Studio中创建新项目。同时,ASP.NET 2.0自带的ASP.NET Development Server使得开发者可以在本地快速测试网站,无需安装完整的IIS,大大简化了...

    ASP.NET 2.0网络开发技术 走进ASP.NET 2.0

    开发者可以在Visual Studio.NET集成开发环境中利用这些工具进行开发。 ASP.NET 2.0是.NET Framework的一部分,它继承了Active Server Page(ASP)的动态网页开发能力,并结合了.NET Framework的优势。ASP.NET 2.0的...

    零基础学ASP.NET.2.0(PPT)

    学习ASP.NET 2.0通常会使用Visual Studio,这是一个强大的IDE,提供了丰富的设计视图、代码编辑器和调试工具,使得开发过程更为直观和高效。 4. **Web Forms**: ASP.NET 2.0的核心是Web Forms,它引入了控件模型...

    ASP.NET 2.0网络编程从基础到实践

    10. **调试和性能优化**:ASP.NET 2.0提供了强大的调试工具,如Visual Studio IDE中的调试器,以及性能分析器,帮助开发者定位问题并优化代码。 通过深入学习"ASP.NET 2.0网络编程从基础到实践",你可以掌握构建...

    ASP.NET 2.0程序设计案例教程(课件)

    9. **错误处理和调试**:学习者会学习如何在ASP.NET 2.0中设置和处理错误,以及使用Visual Studio进行调试。 10. **最佳实践和设计模式**:教程可能还会讨论面向对象编程原则,如SOLID原则,以及如何在ASP.NET 2.0...

    Telerik.Web.UI安装包01

    telerik 的 r.a.d.controls 套装是一款最具革命性和广泛性的开发工具集,它主要针对专业级的 ASP.NET 开发,适用于 AJAX, Atlas 、Visual Studio .NET 2005 、Visual Studio 2008 及 ASP.NET 3.5。通过该产品的强大...

Global site tag (gtag.js) - Google Analytics