⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mailtable.cs

📁 示例描述:本章通过两个小系统演示了如何实现在线投票 SimpleVote 简单投票系统 FullVote 复杂投票系统
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -