2017-11-23 12 views

答えて

-2
StringBuilder sb = new StringBuilder(); 
     //put textbox value in html file C:\Users\files\source\repos\MyApplication\MyApplication\bin\Debug 
     String Header = ReadHtmlFile("file.html"); 
     //sb.AppendLine(Header); 
     sb.Append(Header.Replace("[[NA]]", textBox1.Text)); 
     return sb.ToString(); 
関連する問題