html2js : How to convert a html to javascript
html2js : How to convert a html to javascript
Rate html2js : How to convert a html to javascript
(1(1 Vote))
Set file = fconn.OpenTextFile("c:\pagina.html", 1, False)
Do While Not file.atEndOfStream
linea = file.readline
pagi2 = pagi2 & "document.write('" & linea & "');" & vbCrLf
Loop
Set file = Nothing
Set fconn = Nothing
' save the javascript
open "c:\pagina.js" for output as #1
print #1, pagi2
close #1
html2js : How to convert a html to javascript Comments
No comments yet — be the first to post one!
Post a Comment