I'm trying to write a macro to save a file as an ASP. How do I
obtain the "current" name of the file, or should i generate one?
<pre> 'Loop through all open pages
Dim url As String
For Each page In ActiveWebWindow.PageWindows
page.Activate
'*** Generate file name here?
'
page.SaveAs url
Next
</pre>



