我的 asp.net Web 应用程序有一个 HTML 代码,当我按下按钮提交时,它会调用一个函数来读取 bd 中的内容并将其加载到具有特定模板的 html 页面中,我想知道如何替换静态数据在原始 HTML 文件中使用 C# 来自 mysql 数据库的动态文件。在我的代码中,我确实读取了输入文件,并创建了一个要写入的输出文件,如下所示:
StreamReader sr = new StreamReader("filepath/inputcv.html");
StreamWriter sw = new StreamWriter("filepath/outputcv.html");
这是我需要用我的数据库中的内容替换本段内容的代码的一部分
<div class="sectionContent">
<p>@1</p>
</div>
我看到了这段代码,我想这样做,但我不知道如何在其中编写查询
StreamReader sr = new StreamReader("path/to/file.txt");
StreamWriter sw = new StreamWriter("path/to/outfile.txt");
string sLine = sr.ReadLine();
for (; sLine; sLine = sr.ReadLine() )
{
sLine = "{" + sLine.Replace(" ", ", ") + "}";
sw.Write(sLine);
}