我需要替换从我网站上的每个页面发送的一些数据,我想用 Global.asax 来做。到目前为止,这是我尝试过的:
void Application_PreSendRequestContent(object sender, EventArgs e)
{
System.IO.StreamReader sr = new System.IO.StreamReader(Response.OutputStream);
String output = sr.ReadToEnd();
Response.ClearContent();
Response.Write("Testing..");
}
但这给了我一个 ArgumentException。我究竟做错了什么?有没有更好的方法来做到这一点?
谢谢