Is this possiable if so how?
Thanks,
-Russ
Check out this link for more information.
http://msdn.microsoft.com/library/default.asp?URL=/library/backgrnd/html
/msdn_istips.htm
if you need these scripts let me know and I will post them.
Sent via Deja.com
http://www.deja.com/
-Russ
.
run this in a directory. I have run it in a virtual directory called
temp which is inside of my c:\inetpub\wwwroot directory. (make sure
you have index server do a full rescan of this directory.
Here is the sample query file - note that when it detects a vpath of
/temp it changes the a href to point to a page that connects to the
database and retrieves the file, instead of returning the file - notice
here I am searching for files containing the word exchange - I leave it
up to you to write the database.asp file (contact me again if you need
this code as well).
<HTML>
<BODY>
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <%
set Rs=server.createobject("ADODB.RecordSet")
rs.Open "SELECT path, vpath, filename, characterization from
WEB..SCOPE() WHERE(contains(CONTENTS,'exchange'))","Provider=MSIDXS"
Response.Write "<TABLE WIDTH=80% BORDER=1>"
Response.Write "<TR>"
Response.Write "<TD><B>Path</B></TD><TD><B>characterization</B></TD>"
Response.Write "</TR>"
WHILE NOT RS.EOF
if rs(1) ="/temp/" & rs(2) then
response.write "<TR><TD><a href=database.asp?"& rs(2) & ">" & rs(2) &
"</a></TD><TD>" & rs(3) & "</TD></TR>"
else
response.write "<TR><TD><a href="& rs(1) & ">" & rs(2) &
"</a></TD><TD>" & rs(3) & "</TD></TR>"
end if
RS.MoveNext
WEND
response.write "</table>"
%>
</BODY>
</HTML>
Thanks
-Russ
<hilary...@pharma.novartis.com> wrote in message
news:93vb8m$n1n$1...@nnrp1.deja.com...
Create a vbs script, call it anything and run it in the temp virtual
directory. It will create all of the html files in your temp directory.
I hope this answers your question.
In article <uRZW7z7hAHA.1728@tkmsftngp02>,