魔方拆分服务器信息,增加输出Request
大石头 authored at 2017-11-23 15:42:03
932.00 B
X
@using System.Diagnostics;
@using System.Collections;
@using System.Reflection;
@using System.Runtime.Versioning;
@using NewLife.Common;
@{
    Layout = NewLife.Cube.Setting.Current.Layout;

    ViewBag.Title = "Session列表";
    var Act = ViewBag.Act;

    var asm = Assembly.GetExecutingAssembly();
    var att = asm.GetCustomAttribute<TargetFrameworkAttribute>();
    var ver = att.FrameworkDisplayName ?? att.FrameworkName;
}
<table class="table table-bordered table-hover table-striped table-condensed">
    <tr>
        <th colspan="6">
            Session列表(@Session.Contents.Count )
        </th>
    </tr>
    <tr>
        <th>名称</th>
        <th>类型</th>
        <th>数值</th>
    </tr>
    @foreach (String item in Session.Keys)
        {
        <tr>
            <td>@item</td>
            <td>@Session[item].GetType().FullName</td>
            <td>@Session[item]</td>
        </tr>
        }
</table>