飘灵儿 发表于 2015-1-16 22:33:40

ASP网页编程之怎样将代码天生的文件设为只读

问题是他们究竟是喜欢他们是使用软件时,速度快还是速度慢好.(当然在3秒以内).无论是他们输入资料时,查找资料时,分析资料时.AttributesProperty
Setsorreturnstheattributesoffilesorfolders.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
缺点:安全性不是太差了,还行,只要你充分利用系统自带的工具;唯一缺点就是执行效率慢,如何进行网站优化以后,效果会比较好。

山那边是海 发表于 2015-1-19 16:28:47

尽管MS自己讲C#内核中更多的象VC,但实际上我还是认为它和Java更象一些吧。首先它是面向对象的编程语言,而不是一种脚本,所以它具有面向对象编程语言的一切特性,比如封装性、继承性、多态性等等,这就解决了刚才谈到的ASP的那些弱点。

谁可相欹 发表于 2015-1-25 09:40:42

弱类型造成潜在的出错可能:尽管弱数据类型的编程语言使用起来回方便一些,但相对于它所造成的出错几率是远远得不偿失的。

冷月葬花魂 发表于 2015-2-2 20:55:31

ASP.Net和ASP的最大区别在于编程思维的转换,而不仅仅在于功能的增强。ASP使用VBS/JS这样的脚本语言混合html来编程,而那些脚本语言属于弱类型、面向结构的编程语言,而非面向对象,这就明显产生以下几个问题:

爱飞 发表于 2015-2-8 05:47:18

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

灵魂腐蚀 发表于 2015-2-24 10:28:35

还有如何才能在最短的时间内学完?我每天可以有效学习2小时,双休日4小时。

海妖 发表于 2015-3-7 12:01:29

ASP主要是用好六个对象,其实最主要的是用好其中两个:response和request,就可以随心所欲地控制网页变换和响应用户动作了。

小女巫 发表于 2015-3-15 04:47:25

接下来就不能纸上谈兵了,最好的方法其实是实践。实践,只能算是让你掌握语言特性用的。而提倡做实际的Project也不是太好,因为你还没有熟练的能力去综合各种技术,这样只能使你自己越来越迷糊。

变相怪杰 发表于 2015-3-21 18:27:18

我可以结合自己的经验大致给你说一说,希望对你有所帮助,少走些弯路。
页: [1]
查看完整版本: ASP网页编程之怎样将代码天生的文件设为只读