I have a Text file and need to replace some data in each line (Row Length is 55) from this Text File. Need to Replace Data from Position 11-19 on each Row, - 9 digits with something else like 123456789 (some random nos).
Please help me with code
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject ")
Set f=fs.OpenTextFile(Server.MapPath("MyTextFile.txt") , 1)
f.Close
Set f=Nothing
Set fs=Nothing
%>


Reply With Quote
Bookmarks