代码中li没有class样式名,那么是用父标签的样式名控制的。比如:
#nav_all ul li
或者
#nav-onhoo li
你可以在样式中搜索一些,肯定有的。
然后按你自己的样式修改就行了在资源管理器窗口中选择工具菜单下的文件和文件夹选项,然后在查看标签中,下拉高级设置滚动条,将"隐藏已知文件类型的扩展名",然后将该文件的后缀名asp更改为rar就可以了但根据你所将的情况你应该是使用右键另存为下载的所以你下载的是asp文件,建议你使用鼠标单击或使用工具下载,右键另存为有时候不能建立重定向所以有时候下载的文件是asp文件(服务器上很多都使用asp技术)
如果还没解决你的问题,可以加我百度HI账号。ASP文件 *** 作大全
<%
Class Cls_FSO
Public objFSO
Private Sub Class_Initialize()
Set objFSO = ServerCreateObject("ScriptingFileSystemObject")
End Sub
Private Sub class_terminate()
Set objFSO = Nothing
End Sub
'=======文件 *** 作========
'取文件大小
Public Function GetFileSize(FileName)
Dim f
If ReportFileStatus(FileName) = 1 Then
Set f = objFSOGetfile(FileName)
GetFileSize = fSize
Else
GetFileSize = -1
End if
End Function
'文件删除
Public Function deleteAFile(FileSpec)
If ReportFileStatus(FileSpec) = 1 Then
objFSOdeleteFile(FileSpec)
deleteAFile = 1
Else
deleteAFile = -1
End if
End Function
'显示文件列表
Public Function ShowFileList(FolderSpec)
Dim f, f1, fc, s
If ReportFolderStatus(FolderSpec) = 1 Then
Set f = objFSOGetFolder(FolderSpec)
Set fc = fFiles
For Each f1 in fc
s = s & f1name
s = s & "|"
Next
ShowFileList = s
Else
ShowFileList = -1
End if
End Function
'文件复制
Public Function CopyAFile(SourceFile, DestinationFile)
Dim MyFile
If ReportFileStatus(SourceFile) = 1 Then
Set MyFile = objFSOGetFile(SourceFile)
MyFileCopy (DestinationFile)
CopyAFile = 1
Else
CopyAFile = -1
End if
End Function
'文件移动
Public Function MoveAFile(SourceFile,DestinationFile)
If ReportFileStatus(SourceFile) = 1 And ReportFileStatus(DestinationFileORPath) = -1 Then
objFSOMoveFile SourceFile,DestinationFileORPath
MoveAFile = 1
Else
MoveAFile = -1
End if
End Function
'文件是否存在?
Public Function ReportFileStatus(FileName)
Dim msg
msg = -1
If (objFSOFileExists(FileName)) Then
msg = 1
Else
msg = -1
End If
ReportFileStatus = msg
End Function
'文件创建日期
Public Function ShowDatecreated(FileSpec)
Dim f
If ReportFileStatus(FileSpec) = 1 Then
Set f = objFSOGetFile(FileSpec)
ShowDatecreated = fDatecreated
Else
ShowDatecreated = -1
End if
End Function
'文件属性
Public Function GetAttributes(FileName)
Dim f
Dim strFileAttributes
If ReportFileStatus(FileName) = 1 Then
Set f = objFSOGetFile(FileName)
select Case fattributes
Case 0 strFileAttributes = "普通文件。没有设置任何属性。 "
Case 1 strFileAttributes = "只读文件。可读写。 "
Case 2 strFileAttributes = "隐藏文件。可读写。 "
Case 4 strFileAttributes = "系统文件。可读写。 "
Case 16 strFileAttributes = "文件夹或目录。只读。 "
Case 32 strFileAttributes = "上次备份后已更改的文件。可读写。 "
Case 1024 strFileAttributes = "链接或快捷方式。只读。 "
Case 2048 strFileAttributes = " 压缩文件。只读。"
End select
GetAttributes = strFileAttributes
Else
GetAttributes = -1
End if
End Function
'最后一次访问/最后一次修改时间
Public Function ShowFileAccessInfo(FileName,InfoType)
'//功能:显示文件创建时信息
'//形参:文件名,信息类别
'// 1 -----创建时间
'// 2 -----上次访问时间
'// 3 -----上次修改时间
'// 4 -----文件路径
'// 5 -----文件名称
'// 6 -----文件类型
'// 7 -----文件大小
'// 8 -----父目录
'// 9 -----根目录
Dim f, s
If ReportFileStatus(FileName) = 1 then
Set f = objFSOGetFile(FileName)
select Case InfoType
Case 1 s = fDatecreated
Case 2 s = fDateLastAccessed
Case 3 s = fDateLastModified
Case 4 s = fPath
Case 5 s = fName
Case 6 s = fType
Case 7 s = fSize
Case 8 s = fParentFolder
Case 9 s = fRootFolder
End select
ShowFileAccessInfo = s
ELse
ShowFileAccessInfo = -1
End if
End Function
'写文本文件
Public Function WriteTxtFile(FileName,TextStr,WriteORAppendType)
Const ForReading = 1, ForWriting = 2 , ForAppending = 8
Dim f, m
select Case WriteORAppendType
Case 1: '文件进行写 *** 作
Set f = objFSOOpenTextFile(FileName, ForWriting, True)
fWrite TextStr
fClose
If ReportFileStatus(FileName) = 1 then
WriteTxtFile = 1
Else
WriteTxtFile = -1
End if
Case 2: '文件末尾进行写 *** 作
If ReportFileStatus(FileName) = 1 then
Set f = objFSOOpenTextFile(FileName, ForAppending)
fWrite TextStr
fClose
WriteTxtFile = 1
Else
WriteTxtFile = -1
End if
End select
End Function
'读文本文件
Public Function ReadTxtFile(FileName)
Const ForReading = 1, ForWriting = 2
Dim f, m
If ReportFileStatus(FileName) = 1 then
Set f = objFSOOpenTextFile(FileName, ForReading)
m = fReadLine
ReadTxtFile = m
fClose
Else
ReadTxtFile = -1
End if
End Function
'建立文本文件
'=======目录 *** 作========
'取目录大小
Public Function GetFolderSize(FolderName)
Dim f
If ReportFolderStatus(FolderName) = 1 Then
Set f = objFSOGetFolder(FolderName)
GetFolderSize = fSize
Else
GetFolderSize = -1
End if
End Function
'创建的文件夹
Public Function createFolderDemo(FolderName)
Dim f
If ReportFolderStatus(Folderspec) = 1 Then
createFolderDemo = -1
Else
Set f = objFSOcreateFolder(FolderName)
createFolderDemo = 1
End if
End Function
'目录删除
Public Function deleteAFolder(Folderspec)
Responsewrite Folderspec
If ReportFolderStatus(Folderspec) = 1 Then
objFSOdeleteFolder (Folderspec)
deleteAFolder = 1
Else
deleteAFolder = -1
End if
End Function
'显示目录列表
Public Function ShowFolderList(FolderSpec)
Dim f, f1, fc, s
If ReportFolderStatus(FolderSpec) = 1 Then
Set f = objFSOGetFolder(FolderSpec)
Set fc = fSubFolders
For Each f1 in fc
s = s & f1name
s = s & "|"
Next
ShowFolderList = s
Else
ShowFolderList = -1
End if
End Function
'目录复制
Public Function CopyAFolder(SourceFolder,DestinationFolder)
objFSOCopyFolder SourceFolder,DestinationFolder
CopyAFolder = 1
CopyAFolder = -1
End Function
'目录进行移动
Public Function MoveAFolder(SourcePath,DestinationPath)
If ReportFolderStatus(SourcePath)=1 And ReportFolderStatus(DestinationPath)=0 Then
objFSOMoveFolder SourcePath, DestinationPath
MoveAFolder = 1
Else
MoveAFolder = -1
End if
End Function
'判断目录是否存在
Public Function ReportFolderStatus(fldr)
Dim msg
msg = -1
If (objFSOFolderExists(fldr)) Then
msg = 1
Else
msg = -1
End If
ReportFolderStatus = msg
End Function
'目录创建时信息
Public Function ShowFolderAccessInfo(FolderName,InfoType)
'//功能:显示目录创建时信息
'//形参:目录名,信息类别
'// 1 -----创建时间
'// 2 -----上次访问时间
'// 3 -----上次修改时间
'// 4 -----目录路径
'// 5 -----目录名称
'// 6 -----目录类型
'// 7 -----目录大小
'// 8 -----父目录
'// 9 -----根目录
Dim f, s
If ReportFolderStatus(FolderName) = 1 then
Set f = objFSOGetFolder(FolderName)
select Case InfoType
Case 1 s = fDatecreated
Case 2 s = fDateLastAccessed
Case 3 s = fDateLastModified
Case 4 s = fPath
Case 5 s = fName
Case 6 s = fType
Case 7 s = fSize
Case 8 s = fParentFolder
Case 9 s = fRootFolder
End select
ShowFolderAccessInfo = s
ELse
ShowFolderAccessInfo = -1
End if
End Function
'遍历目录
Public Function DisplayLevelDepth(pathspec)
Dim f, n ,Path
Set f = objFSOGetFolder(pathspec)
If fIsRootFolder Then
DisplayLevelDepth ="指定的文件夹是根文件夹。"&RootFolder
Else
Do Until fIsRootFolder
Path = Path & fName &"<br>"
Set f = fParentFolder
n = n + 1
Loop
DisplayLevelDepth ="指定的文件夹是嵌套级为 " & n & " 的文件夹。<br>" & Path
End If
End Function
'========磁盘 *** 作========
'驱动器是否存在?
Public Function ReportDriveStatus(drv)
Dim msg
msg = -1
If objFSODriveExists(drv) Then
msg = 1
Else
msg = -1
End If
ReportDriveStatus = msg
End Function
'可用的返回类型包括 FAT、NTFS 和 CDFS。
Public Function ShowFileSystemType(drvspec)
Dim d
If ReportDriveStatus(drvspec) = 1 Then
Set d = objFSOGetDrive(drvspec)
ShowFileSystemType = dFileSystem
ELse
ShowFileSystemType = -1
End if
End Function
End Class
%>
当写入数据库的文字或是大于200K的时候会出现这种错误,解决方法:
第一步,打开IIS,点击计算机名,然后 点停止;
第二步,服务---找到 Application Host Helper Service 点停止;
第三步,进入 C:\Windows\System32\inetsrv\config\schema 文件夹,找到 IIS_schemaxml
用记事本打开IIS_schemaxml,找到“maxRequestEntityAllowed” 将后面的 defaultValue=“200000” 数值改大,就可以了
第四步,把上面两个停止的服务重新启动,再次写入数据,一切OK!
!!注意!!:用记事本进行编辑IIS_schemaxml文件的时候注意文件是“只读”属性,要把只读前的小勾去掉,如果去只读 *** 作失败,点右键--管理员取得所有权,就可以保存了;
要不就在数据库里,要不就在配置文件里,要看你读取这个数据的文件怎么写了如果在数据库里,那么可以从后台更改或者直接改数据库
如果在配置文件里,直接打开配置文件就可以改了,就像开个记事本改里面的内容一样,
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)