1
我用下面的代碼如何在fiddler中查看ASP.NET自定義HTTP標頭?
namespace WebApplication3
{
public partial class _Default : Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
Request.Headers.Add("MyHeader", "test");
Response.Redirect("WebForm1.aspx");
}
}
}
設置我的自定義頭,但在菲德勒我不能查看我的自定義標題。我錯過了什麼嗎?