asp+的幾個(gè)特點(diǎn)(二)
發(fā)表時(shí)間:2024-06-13 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]asp+的幾個(gè)特點(diǎn)二 翻譯整理:jjx( http://www.cnscript.com) 原文:http://www.asptoday.com/articles/20000713.htm asp+控件 asp+控件分原生控件(intrinsic controls),列表控件(list contr...
asp+的幾個(gè)特點(diǎn)二
翻譯整理:jjx( http://www.cnscript.com)
原文:http://www.asptoday.com/articles/20000713.htm
asp+控件
asp+控件分原生控件(intrinsic controls),列表控件(list controls),豐富功能控件(rich controls),校驗(yàn)控件(validation controls),以下時(shí)詳細(xì)的說(shuō)明
原生控件
創(chuàng)建html風(fēng)格的控件,有
<TABLE> <TR> <TH> <TD>
<FORM> <INPUT> <SELECT> <TEXTAREA>
<BUTTON> <A> <IMG>
使用時(shí)在html風(fēng)格控件中加入ruanat=server
如<textarea name=Message runat=server>
列表控件
包括Repeater, DataList and DataGrid controls. 主要用用戶輕松展示數(shù)據(jù)集之用
豐富功能控件
向客戶端輸出比較復(fù)雜的html對(duì)象,像月歷,listview等,包括 Calendar和AdRotator controls. 最后發(fā)布版本還包括 TreeView, ImageGenerator,和其他控件
使用舉例
FORM runat="server">
<asp:Calendar runat="server" />
</FORM>
檢驗(yàn)控件
主要用戶檢查用戶的輸入,包括
RequiredFieldValidator,CompareValidator,RangeValidator,RegularExpressionValidator,CustomValidator,ValidationSummary
[]ASP+ Web Services[/b]
使用soap(簡(jiǎn)單對(duì)象訪問(wèn)協(xié)議)訪問(wèn)其他web services
應(yīng)用和會(huì)話狀態(tài)管理
application.session變化不是很大
但session的一個(gè)改變,可能使asp中打開(kāi)新窗口是的會(huì)話有時(shí)會(huì)丟失的bug徹底消除,因?yàn)閟ession管理使用了State Server Process
asp+程序的配置和分發(fā)
全局配置文件:config.web
應(yīng)用程序定義文件:global.asax,除了支持asp中的Application_OnStart, Application_OnEnd, Session_OnStart and Session_OnEnd 外,還支持像as Application_BeginRequest, Security_OnAuthenticate 和其他事件
錯(cuò)誤處理
1、errorPage
<%@Page ErrorPage="/errorpages/thispage.aspx"%>
任何錯(cuò)誤將導(dǎo)向/errorpages/thispage.aspx頁(yè)
2、語(yǔ)言上的增強(qiáng):支持try...catch...finally (vb7)
3、asp+包括全面的跟蹤工具,用于調(diào)試asp+程序
其它特點(diǎn)
1、新的安全特點(diǎn):Passport Authentication(或者是Microsoft 護(hù)照認(rèn)證吧)
2、服務(wù)器端緩沖 (Server-side caching)
asp+開(kāi)始具有xml規(guī)范,asp+ 在windows平臺(tái)上的表現(xiàn)將會(huì)使jsp在 windows 平臺(tái)上無(wú)沒(méi)有任何可言之處
(出處:熱點(diǎn)網(wǎng)絡(luò))