Convert vb.net to asp.net with vb

  • Thread starter Thread starter Krishnaraj_cdm
  • Start date Start date
K

Krishnaraj_cdm

Guest
Hi,

My project change vb.net to asp.net with vb.net. But the bellow code not support asp.

Dim ff As Integer = FreeFile()

Try
FileOpen(ff, Application.StartupPath & "\StudyData\" & Symbol & "ig.csv", OpenMode.Output, OpenAccess.Write)
For i = 1 To Counter
Print(ff, rDate(i) & "," & rOpen(i) & "," & rHigh(i) & "," & rLow(i) & "," & rClose(i) & ",0" & vbCrLf)

Next
FileClose(ff)
Catch ex As Exception
End Try

Try
DB.OpenDatabase(Application.StartupPath & "\StudyData\" & Symbol & "ig.csv", ",")
Rs = DB.getRecordset
Catch ex As Exception
FileClose(ff)

End Try

Continue reading...
 
Back
Top