比较简单的问题,如果写一个函数返回所提交表单的Fields,马上给分!!!谢谢
我看了一段程序,程序是这样的:
Set Fields = GetUpload()
For Each Field In Fields.Items
if Field.name = "title" then title = BinaryToString(Field.value)
if Field.name = "content" then content = BinaryToString(Field.value)
if Field.name = "from" then from = BinaryToString(Field.value)
if Field.name = "file1" then
filename = field.FileName
fileContentType = field.ContentType
filevalue = field.value
end if
next
但是函数GetUpload的源代码没有提供,那位高人能告诉我这个GetUpload方法怎样写吗?
谢谢,马上给分!!!