快捷索引

IPB Image

TOTAL TRAINING出品的ASP.NET 2.0教学,本套共4DVD,是网站程序设计员宝典!

关于TOTAL TRAINING的背景什么来着的,清楚的人也不需要我多加概述,不清楚的人,只需要在此下载此资源,就能体验到此教程的优秀!不过是E文的,E文不好的人先做好心理准备。不过既然是E文的,可以同时进行两方面的学习!鱼和熊掌能否兼得,全掌握在你手上!

DVD1,DVD2 为SET1;DVD3,DVD4为SET2.

在此,拿点ASP.NET的中文概述来充数一下面板,说不定能让还没开始ASP.NET之旅的朋友开始对ASP.NET感兴趣!

什么是 ASP.NET?

ASP.NET 是建立在公共语言运行库上的编程框架,可用于在服务器上生成功能强大的 Web 应用程序。与以前的 Web 开发模型相比,ASP.NET 提供了数个重要的优点:

增强的性能。ASP.NET 是在服务器上运行的编译好的公共语言运行库代码。与被解释的前辈不同,ASP.NET 可利用早期绑定、实时编译、本机优化和盒外缓存服务。这相当于在编写代码行之前便显著提高了性能。

世界级的工具支持。ASP.NET 框架补充了 Visual Studio 集成开发环境中的大量工具箱和设计器。WYSIWYG 编辑、拖放服务器控件和自动部署只是这个强大的工具所提供功能中的少数几种。

威力和灵活性。由于 ASP.NET 基于公共语言运行库,因此 Web 应用程序开发人员可以利用整个平台的威力和灵活性。.NET 框架类库、消息处理和数据访问解决方案都可从 Web 无缝访问。ASP.NET 也与语言无关,所以可以选择最适合应用程序的语言,或跨多种语言分割应用程序。另外,公共语言运行库的交互性保证在迁移到 ASP.NET 时保留基于 COM 的开发中的现有投资。

简易性。ASP.NET 使执行常见任务变得容易,从简单的窗体提交和客户端身份验证到部署和站点配置。例如,ASP.NET 页框架使您可以生成将应用程序逻辑与表示代码清楚分开的用户界面,和在类似 Visual Basic 的简单窗体处理模型中处理事件。另外,公共语言运行库利用托管代码服务(如自动引用计数和垃圾回收)简化了开发。

可管理性。ASP.NET 采用基于文本的分层配置系统,简化了将设置应用于服务器环境和 Web 应用程序。由于配置信息是以纯文本形式存储的,因此可以在没有本地管理工具帮助的情况下应用新设置。此“零本地管理”哲学也扩展到了 ASP.NET 框架应用程序的部署。只需将必要的文件复制到服务器,即可将 ASP.NET 框架应用程序部署到服务器。不需要重新启动服务器,即使是在部署或替换运行的编译代码时。

可缩放性和可用性。ASP.NET 在设计时考虑了可缩放性,增加了专门用于在聚集环境和多处理器环境中提高性能的功能。另外,进程受到 ASP.NET 运行库的密切监视和管理,以便当进程行为不正常(泄漏、死锁)时,可就地创建新进程,以帮助保持应用程序始终可用于处理请求。

自定义性和扩展性。ASP.NET 随附了一个设计周到的结构,它使开发人员可以在适当的级别“插入”代码。实际上,可以用自己编写的自定义组件扩展或替换 ASP.NET 运行库的任何子组件。实现自定义身份验证或状态服务一直没有变得更容易。

安全性。借助内置的 Windows 身份验证和基于每个应用程序的配置,可以保证应用程序是安全的。

再说说Asp.net与ASP的区别

ASP.Net和ASP的最大区别在于编程思维的转换,而不仅仅在于功能的增强。ASP使用VBS/JS这样的脚本语言混合html来编程,而那些脚本语言属于弱类型、面向结构的编程语言,而非面向对象,这就明显产生以下几个问题:
1、代码逻辑混乱,难于管理:由于ASP是脚本语言混合html编程,所以你很难看清代码的逻辑关系,并且随着程序的复杂性增加,使得代码的管理十分困难,甚至超出一个程序员所能达到的管理能力,从而造成出错或这样那样的问题。
2、代码的可重用性差:由于是面向结构的编程方式,并且混合html,所以可能页面原型修改一点,整个程序都需要修改,更别提代码重用了。
3、弱类型造成潜在的出错可能:尽管弱数据类型的编程语言使用起来回方便一些,但相对于它所造成的出错几率是远远得不偿失的。
以上是语言本身的弱点,在功能方面ASP同样存在问题,第一是功能太弱,一些底层操作只能通过组件来完成,在这点上是远远比不上PHP/JSP,其次就是缺乏完善的纠错/调试功能,这点上ASP/PHP/JSP差不多。

那么,ASP.Net有哪些改进呢?
ASP.Net摆脱了以前ASP使用脚本语言来编程的缺点,理论上可以使用任何编程语言包括C++ , VB , JS等等,当然,最合适的编程语言还是MS为.Net Frmaework专门推出的C(读c sharp),它可以看作是VC和Java的混合体吧,尽管MS自己讲C#内核中更多的象VC,但实际上我还是认为它和Java更象一些吧。首先它是面向对象的编程语言,而不是一种脚本,所以它具有面向对象编程语言的一切特性,比如封装性、继承性、多态性等等,这就解决了刚才谈到的ASP的那些弱点。封装性使得代码逻辑清晰,易于管理,并且应用到ASP.Net上就可以使业务逻辑和Html页面分离,这样无论页面原型如何改变,业务逻辑代码都不必做任何改动;继承性和多态性使得代码的可重用性大大提高,你可以通过继承已有的对象最大限度保护你以前的投资。并且C#和C++、Java一样提供了完善的调试/ 纠错体系。
ASP(Active Server Pages)是Microsfot公司1996年11月推出的WEB应用程序开发技术,它既不是一种程序语言,也不是一种开发工具,而是一种技术框架,不须使用微软的产品就能编写它的代码,能产生和执行动态、交互式、高效率的站占服务器的应用程序。运用ASP可将VBscript、javascript等脚本语言嵌入到HTML中,便可快速完成网站的应用程序,无需编译,可在服务器端直接执行。容易编写,使用普通的文本编辑器编写,如记事本就可以完成。由脚本在服务器上而不是客户端运行,ASP所使用的脚本语言都在服务端上运行,用户端的浏览器不需要提供任何别的支持,这样大提高了用户与服务器之间的交互的速度。此外,它可通过内置的组件实现更强大的功能,如使用A-DO可以轻松地访问数据库。
之后,微软又推出ASP.NET。这不是ASP的简单升级,而是全新一代的动态网页实现系统,用于一台WEB服务器建立强大的应用程序。是微软发展的新体系结构.NET的一部分,是ASP和.NET技术的结合。提供基于组件、事件驱动的可编程网络表单,大大简化了编程。还可以用ASP.NET 建立网络服务。
ASP与ASP.NET的区别:
1.开发语言不同
ASP仅局限于使用non-type脚本语言来开发,用户给WEB页中添加ASP代码的方法与客户端脚本中添加代码的方法相同,导致代码杂乱。
ASP.NET允许用户选择并使用功能完善的strongly-type编程语言,也允许使用潜加巨大的.NET Framework。
2.运行机制不同
ASP是解释运行的编程框架,所以执行效率加较低。
ASP.NET是编译性的编程框架,运行是服务器上的编译好的公共语言运行时库代码,可以利用早期绑定,实施编译来提高效率。
3.开发方式
ASP把界面设计和程序设计混在一起,维护和重用困难。
ASP.NET把界面设计和程序设计以不同的文件分离开,复用性和维护性得到了提高。

网络上Down下来的,现在已经有很多完整源!本人也亲自做源,至少一个月!

ASP.NET 2.0
DVD1 – Getting Started with ASP.NET
Lesson 1: OVERVIEW OF ASP.NET
1. Preparing to Use ASP.NET
2. Understanding the Page’s HTML Source Code
3. Introducing the ASP Page its Code
4. Create an ASP.NET Website with Visual Studio
5. Design an ASP.NET Web Page with Visual Studio
6. Running the Web Page Adding Event Handlers
7. Debugging the Application’s Code
Lesson 2: ADDING CONTROLS TO A WEB PAGE 1. Introducing the HTML Controls
2. Introducing the Standard Controls
3. Introducing the Data Controls
4. Introducing the Validation Controls
5. Introducing Navigation, WebParts Crystal Reports
6. Formatting a Page with HTML Controls
7. Adding Options Manually in the Source View
8. Setting the User Interface Properties
9. Invoking the Run As Server Control Function
10. Displaying Information with a Formatted String
11. Designing a Page with Web Controls
12. Changing the Alignment
13. Adding a Calendar Control
Lesson 3: WEB PAGE PROCESSING
1. Setting Initial Control Properties in a .ASPX File
2. Programmatic Initialization in the Page_Load Method
3. Adding Buttons, Labels & a Horizontal Rule
4. TimestampLabel & Multiple Selection Listbox
5. Adding Event Handler Methods to Buttons
6. Understanding Viewstate
7. Looking at the Stages of Initialization
8. OnInit, OnPreRender & OnUnload Methods
9. Adding Another Event Handler Method
10. Working with the Command Name Property
11. Looking at the EventDemo User Interface
12. Look at the Initialization Code behind the Web Page
13. Work with the TextChanged Event Handler
14. Handle the SelectedIndexChanged Event
15. Using Auto-Postback Events
16. Viewing the Auto-Postback Source Code
Lesson 4: VALIDATING USER INPUT
1. Understanding ASP.NET Validation
2. Specifying Required Fields for the Name Control
3. Specifying the Allowable Range for the Age Control
4. Specifying the Enrollment Date Fields & Range
5. Comparing a Value of a Control with a Fixed Value
6. Compare the Value of One Control to Another Control
7. Using Regular Expressions to Specify Input Patterns
8. Defining Custom Validation Rules
9. Adding an Event Handler to a Button
10. Adding a Validation Summary
11. Organizing Controls into Validation Groups

Lesson 5: NAVIGATING A WEBSITE (65 min)
1. Adding Multiple Pages to a Website
2. Redirecting to a Different Web Page
3. Pass Information between Pages with the QueryString
4. Retreiving QueryString Information in a Web Page
5. Retrieving QueryString Information with Variables
6. Linking Pages by Using Hyperlinks
7. Adding Pages to Use in the Site Map
8. Create a Site Map to Define the Pages in a Web Site
9. Add a SiteMapDataSource Control to a Web Page
10. Displaying a Site Map in a TreeView Control
11. Organizing Parent & Leaf Nodes in a Site Map
12. Reorganize Site Structure into Subdirectories
13. Setting Various NodeStyle Properties of the TreeView
14. Displaying Breadcrumbs in a SiteMapPath Control
15. Displaying a Site Map in a Menu Control
16. Final Comments & Credits

以上仅为DVD1的目录,没有太多时间帖上完整目录,请谅解!
……

引用
Experience Level: Beginner to advanced
Running Time: 10.2 Hours, 2 DVDs (ROM)
Project Files: Included
Note: The source code within this training is implemented in visual C#

This training uses:

* Microsoft Visual Studio 2005 Professional Edition, with the .NET Framework 2.0
* Microsoft SQL Server 2005 Enterprise Edition

Freelance developer, consultant, and instructor Andy Olsen has been working with Microsoft and Java-based technologies for over a decade. With Andy leading the way, you will learn the ropes of ASP.NET in no time. you’ll see how to create great user interfaces using the latest ASP.NET Web controls such as GridViews and WebParts. you’ll also learn how to use the full power of the .NET Framework.

Highlights

* Learn how to efficiently layout, develop, and maintain standards-based websites that are scalable, secure, and stable.
* Get up to speed quickly with how to develop ASP.NET Web Applications using C# and Visual Studio 2005.
* Take full advantage of the rich set of ASP.NET 2.0 controls and the extensive .NET Framework class library.
* Learn how to create reusable components to encapsulate the UI layout, logic, and data access code in your Web applications.

Bonus Material
Included with your training, you will find a complimentary copy of a ASP.NET Project Checklist created by Presenter Andy Olsen offering hints and tips for ASP.NET. Topics covered include adding controls to a web page, web page processing, validating user input, navigating a website, understanding ASP.NET apps, data binding, and more.

Presenter: Andy Olsen

Freelance developer, consultant, and instructor Andy Olsen has been working with Microsoft and Java-based technologies for over a decade. You may have seen Andy presenting at industry conferences around the world, or recognize his name from one of the many books that the has authored or reviewed. While Andy has been working with ASP.NET since the first beta, he is also well versed in C, C++, C#, Java, Perl, and Visual Basic.

Full Bio

Highlights

* Learn how to efficiently layout, develop, and maintain standards-based websites that are scalable, secure, and stable.
* Get up to speed quickly with how to develop ASP.NET Web Applications using C# and Visual Studio 2005.
* Take full advantage of the rich set of ASP.NET 2.0 controls and the extensive .NET Framework class library.
* Learn how to create reusable components to encapsulate the UI layout, logic, and data access code in your Web applications.

Bonus Material
Included with your training, you will find a complimentary copy of a ASP.NET Project Checklist created by Presenter Andy Olsen offering hints and tips for ASP.NET. Topics covered include adding controls to a web page, web page processing, validating user input, navigating a website, understanding ASP.NET apps, data binding, and more.

Presenter: Andy Olsen

Freelance developer, consultant, and instructor Andy Olsen has been working with Microsoft and Java-based technologies for over a decade. You may have seen Andy presenting at industry conferences around the world, or recognize his name from one of the many books that the has authored or reviewed. While Andy has been working with ASP.NET since the first beta, he is also well versed in C, C++, C#, Java, Perl, and Visual Basic.

 



会员福利

资源无源时,可利用百度网盘 & 迅雷云盘取回

此内容仅供注册用户。请 %登录%.

神秘内容,请 登录 / 注册 后查看

会员可见全站福利 !




文章类别:

本文链接: https://www.books51.com/31069.html

【点击下方链接,复制 & 分享文章网址】

完全训练Asp.net → https://www.books51.com/31069.html

上一篇:

下一篇:

0 ratings, 0 votes0 ratings, 0 votes (0 次顶, 0已投票)
你必须注册后才能投票!
Loading...

添加新评论