• 大小: 51.3M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-12-20
  • 语言: 其他
  • 标签: 其他  

资源简介

政府网站.rar

资源截图

代码片段和文件信息

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;
using System.IO;

namespace BrawDraw.Com.Utility
{
    public partial class Utility_Text2Image : System.Web.UI.Page
    {
        int _width = 480;
        public int Width
        {
            get
            {
                return _width;
            }
            set
            {
                _width = value;
            }
        }

        int _height = 66;
        public int Height
        {
            get
            {
                return _height;
            }
            set
            {
                _height = value;
            }
        }

        string _text = string.Empty;
        public string Text
        {
            get
            {
                return _text;
            }
            set
            {
                _text = value;
            }
        }

        string _fontName = “黑体“;
        public string FontName
        {
            get
            {
                return _fontName;
            }
            set
            {
                _fontName = value;
            }
        }

        Color _fontColor = Color.Black;
        public Color FontColor
        {
            get
            {
                return _fontColor;
            }
            set
            {
                _fontColor = value;
            }
        }

        Color _backgroundColor = Color.White;
        public Color BackgroundColor
        {
            get
            {
                return _backgroundColor;
            }
            set
            {
                _backgroundColor = value;
            }
        }

        //华文新魏
        protected void Page_Load(object sender EventArgs e)
        {
            if (Request.QueryString[“w“] != null)
            {
                try
                {
                    this._width = int.Parse(Request.QueryString[“w“].Trim());
                }
                finally
                {
                }
            }

            if (Request.QueryString[“h“] != null)
            {
                try
                {
                    this._height = int.Parse(Request.QueryString[“h“].Trim());
                }
                finally
                {
                }
            }

            if (Request.QueryString[“text“] != null)
            {
                this._text = Request.QueryString[“text“].Trim();
            }
            else if (Request.QueryString[“t“] != null)
            {
                this._text = Request.QueryString[“t“].Trim();
            }

            if (Request.Q

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1862  2015-07-21 11:22  wMcms15750d\About.htm

     文件    1347584  2013-06-26 12:15  wMcms15750d\Ad\###wmcmsAD#####.asp

     文件      82743  2015-07-22 09:36  wMcms15750d\Ad\ad.asp

     文件      61426  2015-07-22 09:36  wMcms15750d\Ad\ad1.asp

     文件     153359  2015-07-22 09:36  wMcms15750d\Ad\addadm.asp

     文件     301148  2015-07-22 09:36  wMcms15750d\Ad\addads.asp

     文件     187069  2015-07-22 09:36  wMcms15750d\Ad\addadw.asp

     文件       1371  2007-09-02 09:45  wMcms15750d\Ad\ADimg\admin_bg_bottom.gif

     文件        918  2007-09-02 09:45  wMcms15750d\Ad\ADimg\admin_topbg.gif

     文件        918  2007-09-02 09:45  wMcms15750d\Ad\ADimg\admin_top_bg.gif

     文件       6311  2015-07-22 09:36  wMcms15750d\Ad\boot.asp

     文件      47996  2015-07-22 09:36  wMcms15750d\Ad\config.asp

     文件       1146  2015-07-22 09:36  wMcms15750d\Ad\conn.asp

     文件      49461  2015-07-22 09:36  wMcms15750d\Ad\daima.asp

     文件     155105  2015-07-22 09:36  wMcms15750d\Ad\edit.asp

     文件     175508  2015-07-22 09:36  wMcms15750d\Ad\index.asp

     文件      83590  2015-07-22 09:36  wMcms15750d\Ad\ipdel.asp

     文件     221538  2015-07-22 09:36  wMcms15750d\Ad\list.asp

     文件      76099  2015-07-22 09:36  wMcms15750d\Ad\listip.asp

     文件      51906  2015-07-22 09:36  wMcms15750d\Ad\login.asp

     文件       1179  2015-07-22 09:36  wMcms15750d\Ad\logout.asp

     文件      86210  2015-07-22 09:36  wMcms15750d\Ad\option.asp

     文件      90751  2015-07-22 09:36  wMcms15750d\Ad\saveupload.asp

     文件        286  2008-05-18 15:03  wMcms15750d\Ad\style.css

     文件      64135  2015-07-22 09:36  wMcms15750d\Ad\top.asp

     文件      12318  2015-07-22 09:36  wMcms15750d\Ad\ubbcode.asp

     文件      78221  2010-10-11 23:30  wMcms15750d\Ad\upimg\2006112215592152345.swf

     文件      53129  2010-10-09 15:20  wMcms15750d\Ad\upimg\2006112215592152345~~~.swf

     文件      33289  2015-07-22 09:36  wMcms15750d\Ad\upload.asp

     文件       4773  2008-05-18 15:03  wMcms15750d\Ad\upload_hizi.inc

............此处省略1486个文件信息

评论

共有 条评论