mailtable.cs

来自「示例描述:本章通过两个小系统演示了如何实现在线投票 SimpleVote 」· CS 代码 · 共 20 行

CS
20
字号
using System;
using System.Data;
using System.Web;
/// <summary>
/// 获取保存的表格信息
/// </summary>
public class MailTable
{
	public MailTable()
	{
	}
    public DataTable GetTable()
    {
        if (HttpContext.Current.Session["TABLE"] != null)
            return (DataTable)HttpContext.Current.Session["TABLE"];
        else
            return null;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?