ASP网页编程之怎样将代码天生的文件设为只读
问题是他们究竟是喜欢他们是使用软件时,速度快还是速度慢好.(当然在3秒以内).无论是他们输入资料时,查找资料时,分析资料时.AttributesPropertySetsorreturnstheattributesoffilesorfolders.Read/writeorread-only,dependingontheattribute.
object.Attributes[=newattributes]
Arguments
object
Required.AlwaysthenameofaFileorFolderobject.
newattributes
Optional.Ifprovided,newattributesisthenewvaluefortheattributesofthespecifiedobject.
Settings
Thenewattributesargumentcanhaveanyofthefollowingvaluesoranylogicalcombinationofthefollowingvalues:
ConstantValueDescription
Normal0Normalfile.Noattributesareset.
ReadOnly1Read-onlyfile.Attributeisread/write.
Hidden2Hiddenfile.Attributeisread/write.
System4Systemfile.Attributeisread/write.
Directory16Folderordirectory.Attributeisread-only.
Archive32Filehaschangedsincelastbackup.Attributeisread/write.
Alias1024Linkorshortcut.Attributeisread-only.
Compressed2048Compressedfile.Attributeisread-only.
Remarks
Attemptstochangeanyoftheread-onlyattributes(Alias,Compressed,orDirectory)areignored.
Whensettingattributes,itisgenerallyagoodideatofirstreadthecurrentattributes,thenchangetheindividualattributesasdesired,andfinallywritetheattributesback.
ThefollowingcodeillustratestheuseoftheAttributespropertywithafile:
FunctionToggleArchiveBit(filespec)
Dimfso,f
Setfso=CreateObject("Scripting.FileSystemObject")
Setf=fso.GetFile(filespec)
Iff.attributesand32Then
f.attributes=f.attributes-32
ToggleArchiveBit="Archivebitiscleared."
Else
f.attributes=f.attributes+32
ToggleArchiveBit="Archivebitisset."
EndIf
EndFunction
缺点:安全性不是太差了,还行,只要你充分利用系统自带的工具;唯一缺点就是执行效率慢,如何进行网站优化以后,效果会比较好。 尽管MS自己讲C#内核中更多的象VC,但实际上我还是认为它和Java更象一些吧。首先它是面向对象的编程语言,而不是一种脚本,所以它具有面向对象编程语言的一切特性,比如封装性、继承性、多态性等等,这就解决了刚才谈到的ASP的那些弱点。 弱类型造成潜在的出错可能:尽管弱数据类型的编程语言使用起来回方便一些,但相对于它所造成的出错几率是远远得不偿失的。 ASP.Net和ASP的最大区别在于编程思维的转换,而不仅仅在于功能的增强。ASP使用VBS/JS这样的脚本语言混合html来编程,而那些脚本语言属于弱类型、面向结构的编程语言,而非面向对象,这就明显产生以下几个问题: 用户端的浏览器不需要提供任何别的支持,这样大提高了用户与服务器之间的交互的速度。 还有如何才能在最短的时间内学完?我每天可以有效学习2小时,双休日4小时。 ASP主要是用好六个对象,其实最主要的是用好其中两个:response和request,就可以随心所欲地控制网页变换和响应用户动作了。 接下来就不能纸上谈兵了,最好的方法其实是实践。实践,只能算是让你掌握语言特性用的。而提倡做实际的Project也不是太好,因为你还没有熟练的能力去综合各种技术,这样只能使你自己越来越迷糊。 我可以结合自己的经验大致给你说一说,希望对你有所帮助,少走些弯路。
页:
[1]