山那边是海 发表于 2015-1-16 23:18:28

ASP网页编程之Using the Locale Identifier (LCID) (...

asp,jsp,php是web开发的三大技术,asp简单易用且有microsoft做靠山,jsp功能强大是因为有java支持,php则开源跨平台.在国内,asp应用范围最广,jsp发展势头最猛,php则处于劣势.这可能与公司的支持以及技术的培训有关.Introduction:
WhenyouusetheVBScriptfunctionsFormatNumber,FormatDateTime,andFormatCurrency,theoutputdisplayedisbasedupontheregionalsettingsofyourWebserver.(Tolearnmoreaboutthesefunctionscheckoutthetechnicaldocs(FormatCurrency|FormatDateTime|FormatNumber)orthisFAQ.)Forexample,ifyouhaveyourregionalsettingstoEnglish-UnitedStates,whenrunningthefollowingcodefromanASPpage:

Response.WriteFormatNumber(123456789)&"<br>"
Response.WriteFormatCurrency(987654321)


Youwillgetthefollowingoutput:
123,456,789.00
$987,654,321.00

Notethatbothincludetwodigitsafterthedecimalbydefault,thatsetofthreedigitstotheleftofthedecimalplaceisgroupedbyacomma,andthatthedecimalplaceisrepresentedbyaperiod.WhileUSvisitorsmaybeaccustomedtothisformat,manyEuropeansaremorefamiliarwithasystemthatusesspacesinsteadofcommasandcommasinsteadofperiods.

Forexample,someonefromFrancemaybemorecomfortablewiththefollowingoutput:
123456789,00
987654321,00F

Ofcourse,duetoexchangerates,987,654,321francsand876,654,321dollarsarenotequivalent,butavisitorfromFrancewould,mostlikely,prefertoseemonetaryratesintheirnaturalcurrency.

RegionalSettings:
ThevaluesFormatNumberandFormatCurrencyfunctionsoutputiscustomizable,basedontheregionalsettingsoftheWebserver.ToaltertheWebserversregionalsettingsyouneedtohaveAdministratoraccesstothemachineitself.StartbyopeningtheControlPanel(Start/Settings/ControlPanel)anddoubleclickontheRegionalOptionsicon.Thiswillopenadialogboxsimilartotheonebelow.Inthefirsttab,youcanselecttheWebserversdefaultlocalesetting.Thereareaplethoraoflocalesyoucanselect,allofthemhighlycustomizable.



Takeamomenttoexaminethedialogbox:noticethattherearetabsfortheNumbers,Currency,andDateandTimefortheselectedlocale.Thesesettingsareallcustomizable.So,ifyouchoseyourlocaletobeEnglish(UnitedStates)butwantedto,bydefault,showfourdigitsafterthedecimalplace,youcouldmoveovertotheNumberstabandmakethisoption.ThescreenshotbelowisoftheNumberstabshowingallofthesettingsyoucanspecifyfortheselectedlocale.



Whilespecifyingadefaultlocalesetting,whichinherentlyeffectstheoutputofVBScriptsFormatfunctions,isusefulandhandy,whatifwewantto,forsomeusersorforsomeoccassions,useadifferentlocalesetting?Howcanweaccomplishthis?WellexamineexactlyhowtousingtheLCIDpropertyoftheSessionobjectinPart2.</p>由于ASP提供的是一对多的服务,所以用户的一些特殊需求很难得到满足。

兰色精灵 发表于 2015-1-20 09:28:56

以HTML语言整合(HTML负责界面上,ASP则负责功能上)形成一个B/S(浏览器/服务器)模式的网页程序。

金色的骷髅 发表于 2015-1-24 07:44:24

虽然ASP也有很多网络教程。但是这些都不系统。都是半路出家,只是从一个例子告诉你怎么用。不会深入讨论,更不会将没有出现在例子里的方法都一一列举出来。

若天明 发表于 2015-1-31 22:06:00

运用经典的例子。并且自己可以用他来实现一些简单的系统。如果可以对他进行进一步的修改,找出你觉得可以提高性能的地方,加上自己的设计,那就更上一个层次了,也就会真正地感到有所收获。

admin 发表于 2015-2-2 22:37:07

从事这个行业,那么你可以学ASP语言,简单快速上手,熟练dreamweav排版,写asp代码,熟练photoshop处理图片,打好基础就行了

透明 发表于 2015-2-8 18:40:16

用户端的浏览器不需要提供任何别的支持,这样大提高了用户与服务器之间的交互的速度。

简单生活 发表于 2015-2-25 22:08:09

以上是语言本身的弱点,在功能方面ASP同样存在问题,第一是功能太弱,一些底层操作只能通过组件来完成,在这点上是远远比不上PHP/JSP,其次就是缺乏完善的纠错/调试功能,这点上ASP/PHP/JSP差不多。

再现理想 发表于 2015-3-8 07:43:28

掌握asp的特性而且一定要知道为什么。

爱飞 发表于 2015-3-15 21:20:47

那么,ASP.Net有哪些改进呢?

不帅 发表于 2015-3-22 05:05:33

不能只是将它停留在纸上谈兵的程度上。
页: [1]
查看完整版本: ASP网页编程之Using the Locale Identifier (LCID) (...