我正在创建一个应用程序。在该应用程序中,我有一个空白的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>
我不知道为什么数据会响应。请帮帮我。谢谢。
答案 0 :(得分:0)
听起来更简单的经验就是将这些其他内容转化为UserControls,然后在此页面中包含相关的UserControl。见http://msdn.microsoft.com/en-us/library/26db8ysc(v=vs.85).aspx