Not sure on what kind of info you are looking at creating Word file from ASP ... so i have attached a basic code snippet for the same.
Set WA = CreateObject("Word.Application")
Set WD = WA.Documents.Add()
Set WR = WD.Paragraphs.Add.Range
WR.InsertBefore("Testing")
WR.Style="Normal"
WR.Font.Bold = true
Wpath = Server.MapPath("mention the path where u want to save the doc")
WD.SaveAs Wpath & "\" & "test.doc"
WD.Close
WA.Quit
Set WD = nothing
Set WA = nothing
Best Regards
Vadivel
MVP ASP/ASP.NET
http://vadivel.thinkingms.com