dim advisory as string = String.empty
advisory = "This is an example only."
'this code itself is an error
dim htmlcode as string = ""
< /code>
Я должен объединить HTMLCode & Advisory, чтобы я мог создать файл HTM < /p>
strAdvisoryScriptEnAdvisoryFileName = ConfigurationManager.AppSettings("advisoryPath") & "advisory.htm"
Using sw As New StreamWriter(File.Open(AdvisoryFileName, FileMode.Create))
sw.WriteLine(advisory)
End Using
У меня есть этот код: < /p> [code] dim advisory as string = String.empty advisory = "This is an example only."
'this code itself is an error dim htmlcode as string = "" < /code> Я должен объединить HTMLCode & Advisory, чтобы я мог создать файл HTM < /p> strAdvisoryScriptEnAdvisoryFileName = ConfigurationManager.AppSettings("advisoryPath") & "advisory.htm"
Using sw As New StreamWriter(File.Open(AdvisoryFileName, FileMode.Create)) sw.WriteLine(advisory) End Using [/code] может кто -нибудь помочь мне исправить это?>