我的服务器似乎有时会返回错误的HTML Web客户
即时通讯使用asp.net 4与IIS快递VS 2012的调试。
为了调试这个问题,我还想跟踪该ASP.NET是发送HTML
在Global_asax_PreRequestHandlerExecute
我可以访问响应代码和地位,但似乎无法找到遗体的html
我想读OutputStream
这样的:
Dim ms = New MemoryStream
CurContext.Response.OutputStream.CopyTo(ms)
Dim sr = New StreamReader(ms)
Dim rtext = sr.ReadToEnd
但是这将引发NotSupportedException
Stream does not support reading.
有任何想法吗?
非常感谢
编辑
我现在测试这是肯定的
我在页面上的标签具有以下属性
<asp:label id="l" runat="server" Font-Bold="true" Font-Size="X-Large" BackColor="Pink"/>
在浏览器中显示时,它显示就好了,具体如下:
<span id="C1_FormView1_l" style="background-color:Pink;font-size:X-Large;font-weight:bold;">Processed</span>
但与Web客户端下载我得到
<span id="C1_FormView1_l"><b><font size="6">Processed</font></b></span>
为什么是背景色输了? 和BTW,为什么不使用它更现代的style
,而不是添加属性b
和font
如果我能读ResponseStream我至少知道它在哪里丢失,甚至,我不知道现在。
非常感谢你
PS如果.NET 4.5是为了这个美好的,那么我会考虑改变目标框架
你可以在HTML(和修改)通过覆盖渲染页面/网站母。
protected override void Render(System.Web.UI.HtmlTextWriter writer)
{
using (System.IO.MemoryStream ms = new System.IO.MemoryStream())
{
using (System.IO.StreamWriter sw = new System.IO.StreamWriter(ms))
{
HtmlTextWriter tw = new HtmlTextWriter(sw);
base.Render(tw);
tw.Flush();
ms.Position = 0;
using (System.IO.StreamReader sr = new System.IO.StreamReader(ms))
{
string yourHTML = sr.ReadToEnd();
// do stuff with yourHTML
Response.Write(yourHTML);
sr.Close();
tw.Dispose();
}
}
}
}
在VB中
Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter)
Using ms As New System.IO.MemoryStream()
Using sw As New System.IO.StreamWriter(ms)
Dim tw As HtmlTextWriter = New HtmlTextWriter(sw)
MyBase.Render(tw)
tw.Flush()
ms.Position = 0
Using sr As New System.IO.StreamReader(ms)
Dim yourHTML As String = sr.ReadToEnd()
'do stuff with yourHTML'
Response.Write(yourHTML)
sr.Close()
tw.Dispose()
End Using
End Using
End Using
End Sub
这不回答我原来的问题在技术上,但它确实解决了我有问题
问题是,HTML渲染wasnt正确
我现在记得的aspx具有自适应渲染,所以我fgured请求中使用的用户代理可能是罪魁祸首
我改变了我的代码:
Dim myReq As HttpWebRequest = WebRequest.Create(MailUrl)
myReq.UserAgent = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"
Dim resp As HttpWebResponse = myReq.GetResponse
Dim stream = resp.GetResponseStream
Dim rdr = New StreamReader(stream)
Dim BodyText = rdr.ReadToEnd
而现在的HTML渲染是正确的现代HTML5 / CSS3标记
我感谢您的帮助和指导。