我想在加载时更改 html 文件中的一些字符串。例如,我有一个 html 文件:
<html>
<head>
<title>MyTitle</title></head>
<body>
Some Text
<script type='text/javascript'>
/*some script*/
var myString = "TargerInfo";
/*some script*/
</script>
</body>
</html>
我Page_Load
在代码隐藏文件中使用方法:
protected void Page_Load(object sender, EventArgs e)
{
/*Insert necessary snippet of code*/
}
我应该使用什么代码将字符串“TargerInfo”更改为“OtherString”?
[编辑] 对不起,我忘了提到我只能在代码隐藏类中向 html 页面添加任何信息,因为这个页面不是由我生成的。我想我应该使用这样的东西:
1)加载html文件
2)找到我的字符串
3)更换它
4)发送html文件
有一个aspx页面,但我只添加了部分代码,其他代码由VS添加