{$cfg_webname}
主页 > 外文翻译 > 计算机翻译 >

ASP.NET的应用

来源:wenku163.com  资料编号:WK1635561 资料等级:★★★★★ %E8%B5%84%E6%96%99%E7%BC%96%E5%8F%B7%EF%BC%9AWK1635561
资料介绍


  asp.NET的应用

  

  asp.NET的发展

  一旦你决定你必须建设动态网站(你应该会),你选择未来你将会利用它作来开发的工具。

  首先,你知道一些传统做法,例如公共网关界面(公共网关介面)、网络应用程序服务器,接口(ISAPI),以及动态服务器页技术(ASP)。ASP.NET是最新动态网页应用的开发工具,在这一节中你就可以找到怎样开始使用它的方法,ASP.NET发展在许多方面与传统的ASP有很多相同之处,但也有许多不同之处,通过全章你将看出我指出的ASP和ASP.NET突出的不同的地方,也有利于你的asp编程经验。

  您好asp.NET世界!

  和所有的程序语言讨论一样,第一个例子几乎是强制性,它提出的'世界您好'种类,在第一章中,先简要介绍了asp是"你好世界"的一个例子。

  <% Option Explicit %>

  

  

  Hello asp World

  

  

  


  <%

  

  ASP.NET有.aspx的扩展名不同于asp的命名规则

  ASP.NET命名名称一般都有扩展名aspx(其他的扩展名是联系ASP.NET。但是ASP.NET应用程序与asp粗略的相同是aspx), ASP和ASP.NET动态文件,就可以肩并肩的共存与一个WEB站点上。但是他们不能共享相同的应用设置或会议资料。ASP是IIS的一种开发式无需编译的应用程序环境,ASP.NET中,所以程序仍然保存在服务器端,但由服务器编译执行。通常比较好的办法是拥有ASP和asp.NET两个独立的目录,只有在URL上进行交流或通过一个共同的数据库。

  在ASP.NET版本和asp版本中有很多不同的地方,第一个不同的地方就是语言运用,高于VB脚本语言或者任何一个VB版本。

  

  





外文原文(复印件)

asp.NET Applications

  asp.NET Development

  Once you've decided that you need to create dynamic Web content(and you certainly will),your next decision is to choose the tools you'll use to develop it.

  First, you learned about some of the traditional options, such as the Common Gateway Interface (CGI),the Internet Server Application Programmers

  Interface(ISAPI),and Active Server Pages(ASP).ASP.NET is the newest tool for developing dynamic Web applications ,and in this chapter, you'll find out what you need to know to start using it.ASP.net development has much in common with traditional ASP development, but it also has many differences. Throughout the chapter, you'll see special notes that I've added to highlight the differences between ASP andASP.NET for you asp programming veterans.

  

  Hello asp.NET World!

  As with all discussions of programming languages, it's almost mandatory that the first example presented be of the 'Hello World' variety, The brief introduction to asp in Chapter 1 showed the typical 'Hello Word 'example.

  <% Option Explicit %>

  

  

  Hello asp World

  

  

  


  <%

  

  ASP.NET Difference ASP file names have the extension. aspx.

  ASP.net file names generally have the extension.aspx.(Other extensions are associated with ASP.NET,but the rough equivalent of.asp for ASP.NET application is aspx.) ASP and ASP.NET files can coexist side by side on a Web site; however,hey won't share common application settings or session information.it's generally better to have ASP and asp.NET applications in separate directories,interacting only via standard arguments on URLs or through a common database.

  There is lots of differcnces between the ASP.NET version and the asp version.

  The first difference is the language used. Rather than Visual Basic Scripting Edition(VBScrpt),or even any version of Visual Basic。

  

推荐资料