|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
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提供的是一对多的服务,所以用户的一些特殊需求很难得到满足。 |
|