salve a tutti... mi occorre aiuto e vi spiego perché:
ho creato un codice che genera da un file xml, che a sua volta pesca da un file in asp, i dati dal db, uguale uguale a quello di questo sito (http://www.webmasterpoint.org/rss/rss.asp )
questo è il codice:
<%' Creo oggetto DOM XML
Set objXML = Server.CreateObject("msxml2.DOMDocument.3.0")
objXML.async = false
objXML.setProperty "ServerHTTPRequest", True

' validazione del documento XML
objXML.validateOnParse =false' true

' non conservare spazi
objXML.preserveWhiteSpace = false

blnLoaded = objXML.Load("http://www.miosito.it/ilfilexml.asp")
If Not blnLoaded Then
Response.write "Nessuna news da visualizzare"
Else
set objNodeList = objXML.getElementsByTagName("channel")

For Each objNode In objNodeList
For Each objNode2 In objNode.childNodes

Select Case objNode2.nodeName
Case "title"
html = html + "<tr><td>"
html = html + objNode2.firstChild.nodevalue
html = html + "
</td></tr>"
Case "link"
html = html + "<tr><td><a target=_blank href=" + objNode2.firstChild.nodevalue + ">"
html = html + objNode2.firstChild.nodevalue
html = html + "</a></td></tr>"
Case "description"
html = html + "<tr><td>"
html = html + objNode2.firstChild.nodevalue
html = html + "
</td></tr>"
End Select
Next
Next

html = html + "<tr><td><hr></td></tr>"

Set objNodeList = objXML.getElementsByTagName("item")
For Each objNode In objNodeList
For Each objNode2 In objNode.childNodes
Select Case objNode2.nodeName
Case "title"
strTitle = objNode2.firstChild.nodevalue
Case "link"
strURL = objNode2.firstChild.nodevalue
Case "description"
strDescription = objNode2.firstChild.nodevalue
End Select
Next

html = html + "<tr><td><li/>" + strTitle + "
" + strDescription +"<hr></td></tr>"
strTitle = ""
strURL = ""
strDescription = ""
Next

html = "<table>"+html+"</table>"
set objNodeList = Nothing
End if
%>
<%
Response.write (html)
%>
ora l'aiuto che chiedo è questo: è possibile fare in modo da poter far scaricare agli utenti del mio sito non il codice sopra indicato, per cui dovrebbero per forza di cosa lavorare in asp, ma un semplice js tipo quello che html.it offre alla pagina http://www.html.it/rss.php il seguente codice:

<script type="text/javascript" src="http://www.html.it/rss/webnews_news.js"></script></p>
il fatto è che si dovrebbe creare un file js... e come si fa!?... non so forse mi sono espresso peggio di una capra... ma spero cmq di aver fatto capire il mio problema!