Request.ServerVariables("Cert_Server_Subject")
服务器证书的主题字段
Request.ServerVariables("Cert_Subject")
客户端证书的主题字段
Request.ServerVariables("Content_Type")
客户发送的form內容或HTTPPUT的数据类型
不防自己动手遍历一下Request.ServerVariables返回结果。方法如下:
将下面的代码放入aspx页面代码中,测试一下:
<div>
<b>Request.ServerVariables总结</b>
<br />
<br />
<%foreach(object obj in Request.ServerVariables)
{
string name = obj.ToString();
%>
Request.ServerVariables["<%=name%>"]:<span style="color:Red"><%=Request.ServerVariables[name]%></span>
<br />
<%} %>
</div>