Dude, here's a VBScript example that can help you read the contents of ASP files and write them into a single text file. Save the following code as a `.vbs` file (for example, `asp_to_txt.vbs`):
```vbscript
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objOutput = objFSO.CreateTextFile("output.txt", True)
strFolder = InputBox("Please enter the folder path containing ASP files")
Set objFolder = objFSO.GetFolder(strFolder)
Set colFiles = objFolder.Files
For Each objFile In colFiles
If LCase(objFSO.GetExtensionName(objFile)) = "asp" Then
Set objInput = objFSO.OpenTextFile(objFile.Path)
strContent = objInput.ReadAll
objOutput.WriteLine(strContent)
objInput.Close
End If
Next
objOutput.Close
MsgBox "Operation completed!"
```
You need to run this script, and when prompted, enter the folder path that contains all the ASP files. It will read all the content of the ASP files in that folder and write them into a single `output.txt` file.
Please note that you need to have appropriate file access permissions to run this script. Also, this is a simple way to collect the contents; you can adjust it according to more specific needs if necessary.