I have the code that upload the file, but I couldn't find the code for convert the html. Can you help me?
THank you!
Pablo




Posted 04 November 2009 - 07:04 AM
Posted 04 November 2009 - 08:24 AM
Posted 04 November 2009 - 09:05 AM
Public Shared Sub Main()
Try
' Create an instance of StreamReader to read from a file.
Dim sr As StreamReader = New StreamReader("TestFile.txt")
Dim line As String
' Read and display the lines from the file until the end
' of the file is reached.
Do
line = sr.ReadLine()
Console.WriteLine(Line)
Loop Until line Is Nothing
sr.Close()
Catch E As Exception
' Let the user know what went wrong.
Console.WriteLine("The file could not be read:")
Console.WriteLine(E.Message)
End Try
End Sub
Posted 04 November 2009 - 09:54 AM
Public Shared Sub Main()
Try
' Create an instance of StreamReader to read from a file.
Dim sr As StreamReader = New StreamReader("TestFile.txt")
Dim line As String
' Read and display the lines from the file until the end
' of the file is reached.
line = sr.ReadToEnd()
sr.Close()
Catch E As Exception
' Let the user know what went wrong.
Console.WriteLine("The file could not be read:")
Console.WriteLine(E.Message)
End Try
End Sub
Posted 05 November 2009 - 05:18 AM
This post has been edited by Pablo3728: 05 November 2009 - 05:20 AM
Posted 05 November 2009 - 12:23 PM
line = line.Replace("<EVIMED>", "pablo")
|
|
Query failed: connection to localhost:3312 failed (errno=111, msg=Connection refused).
|
