我正在制作一个应用程序。在该应用程序中,我有一个空白的 aspx 页面。该应用程序部署在 IIS 上。我正在从其他机器调用该 aspx 页面。在 aspx 页面的加载事件中,我将代码编写为
protected void Page_Load(object sender, EventArgs e)
{
Response.BufferOutput = false;
writer = Response.Output;
try
{
if (!Page.IsPostBack)
{
processRequest.ProcessReuest(Request, writer);
writer.Close();
}
}
catch(Exception ex)
{
LoggerWeb.Error(ex.Message,ex);
}
finally
{
processRequest = null;
}
}
其中 processRequest.ProcessReuest 是同一项目中另一个类的方法。在该方法中,我在响应中写入了一些字符串数据。很多时候,我在响应中获得了正确的数据,但有时我在响应中获得了一些 HTML 数据,如下所示:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>
</title></head>
<body>
<form method="post" action="obstreamer.aspx?PortNo=16387&Scode=8&SessionId=04052012073228202&Width=4&historyDirection=backword" id="form1">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="
2012-05-04 19:34:18.994 MVisum Ob[3270:f803] [self.newdata length]=235
2012-05-04 19:34:18.995 MVisum Ob[3270:f803] RECEIVED DATA=/wEPDwULLTE2MTY2ODcyMjlkZIYNklWIHuNxLNApLWs+6QTn2Vt4n8THjCx316p9WOvX" />
<div>
</div>
</form>
</body>
</html>
我不明白为什么这些数据会在响应中出现。请帮助我。在此先感谢。