ImageVerifierCode 换一换
格式:DOCX , 页数:14 ,大小:26.33KB ,
资源ID:14979753      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/14979753.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(毕业设计长沙公交查询系统开题报告和中期报告管理资料Word文件下载.docx)为本站会员(b****1)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

毕业设计长沙公交查询系统开题报告和中期报告管理资料Word文件下载.docx

1、二、本科毕业设计(论文)开题报告三、本科毕业设计(论文)中期报告四、毕业设计(论文)指导教师评阅表五、毕业设计(论文)评阅教师评阅表六、毕业设计(论文)答辩评审表2010届本科生毕业设计(论文)资料Active Server PagesActive Server Pages (ASP) is Microsofts first server-side script engine for dynamically-generated web pages. It was initially marketed as an add-on to Internet Information Services (

2、IIS) via the Windows NT Option Pack, but has been included as a free component of Windows Server since the initial release of Windows 2000 Server. Programming ASP websites is made easier by various built-in objects. Each object corresponds to a group of frequently-used functions useful for creating

3、dynamic web pages. In ASP there are six such built-in objects: Application, ASPError, Request, Response, Server, and Session. Session, for example, is a cookie-based session object that maintains variables from page to page. Web pages with the .asp or file extension use ASP, although some Web sites

4、disguise their choice of scripting language for security purposes. The .aspx extension is not an ASP page, but an page, another server-side scripting language from Microsoft, based on a mixture of traditional ASP, and Microsofts .NET technology.Most ASP pages are written in VBScript, but any other A

5、ctive Scripting engine can be selected instead by using the Language directive or the syntax. JScript (Microsofts implementation of ECMAScript) is the other language that is usually available. PerlScript (a derivative of Perl) and others are available as third-party installable Active Scripting engi

6、nes.History:ASP was one of the first web application development environments that integrated web application execution directly into the web server. This was done in order to achieve high performance compared to calling external executable programs or CGI scripts which was the most popular method f

7、or writing web applications at the time it was introduced. Today there are additional platforms for web application development that are more common on other operating systems. Both JavaServer Pages and PHP are more commonly found on webservers running non-Microsoft operating systems, with PHP curre

8、ntly being the more common of the two. Also of note is ColdFusion, a popular Java technology running on several platforms including Microsoft servers as well as other platforms.Prior to Microsofts release of ASP for IIS 3, programmers relied on IDC and HTX files combined with ODBC drivers to display

9、 and manipulate dynamic data and pages running on IIS. The basics of these file formats and structures were used, at least in part, in the implementation of the early versions of ASP.InstantASP and ChilisoftASP are technologies that run ASP on platforms other than the Microsoft Windows Operating Sys

10、tem. ChilisoftASP was purchased by Sun Microsystems and later renamed Sun ONE Active Server Pages, then later renamed to Sun Java System Active Server Pages. It appears that InstantASP is no longer available. There are large open source communities on the internet, such as ASPNuke, which produce ASP

11、 scripts, components and applications to be used free under certain license terms.edit VersionsASP has gone through three major releases:ASP version (distributed with IIS ) in December 1996 ASP version (distributed with IIS ) in September 1997 ASP version (distributed with IIS ) in November 2000 ASP

12、 is currently available in IIS on Windows Server 2003 and IIS on Windows Server 2008. is often confused as the newest release of ASP, but the technologies are very different. relies on the .Net Framework and is a compiled language, whereas ASP is strictly an interpreted scripting language.The move f

13、rom ASP to ASP was a relatively modest one. One of the most important additions was the methods, as well as the ASPError object.1 Microsofts Whats New in IIS lists some additional changes.There are solutions to run Classic ASP sites as standalone applications, such as ASPexplore, a software package

14、that runs Microsoft Active Server Pages offline.edit Sample usageSeveral scripting languages may be used in ASP. However, the default scripting language (in classic ASP) is VBScript:body% Hello World! How are you today? %/body/htmlOr in a simpler format%= The examples above print into the body of an

15、 HTML document.Heres how to connect to an Access Database% Set oConn = () DRIVER=Microsoft Access Driver (*.mdb); DBQ= & ( Set rsUsers = (SELECT * FROM Users, oConn%译文:动态服器网页动态服器网页(Active Server Pages),由微软公司开发的服务器端运行的脚本平台,它被Windows下Internet Information Services (IIS)的程式所管理。透过ActiveX server 的技术让不同的使用者能有不同的画面,或需要让他们可以存取服务器 (server)上的资料时,来协助程序员隐藏复杂的沟通机制,让程序员可以专注在解决问题和

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1