关于.net 的webbrowser替换内容问题
我想把webbrowser 里的内容替换成中文的,但是每次都不能一次全部替换,求哪位大侠能帮我解决document = (IHTMLDocument2)webMain.Document.DomDocument;
body = (IHTMLBodyElement)document.body;
txtRange = (IHTMLTxtRange)body.createTextRange();
foreach (ConvertModel model in list)
{
if (txtRange.findText(model.English.Trim(), 1, 4))
{
i++;
txtRange.pasteHTML(model.Chinese);
Console.WriteLine("{0} {1}--->{2}",i.ToString(),model.English,model .Chinese);
}
}
补充:.NET技术 , C#