テキストファイルを介してフォームをロードしているasp.net(VB) Webサイトがあります。テキスト ファイルには、コード内の関数を動的に入力する必要がある 3 つのフィールドがあります。
テキスト ファイルをロードし、ロード後に特定の領域に入力する方法はありますか?
テキストファイルを読む方法は次のとおりです。
If Not File.Exists(FILE_NAME) Then
'file does not exist
System.Web.HttpContext.Current.Response.Write("File Does Not Exist!")
Return
End If
Using sr As StreamReader = File.OpenText(FILE_NAME)
Dim input As String
Do
input = sr.ReadLine()
If Not (input Is Nothing) Then
System.Web.HttpContext.Current.Response.Write(input)
fileText = fileText & input.ToString
End If
Loop Until input Is Nothing
End Using
ありがとう!