zoukankan      html  css  js  c++  java
  • DtCms.Web.Tools.Http_ImgLoad.ashx.cs

    using System;
    using System.Web;
    using DtCms.Common;
    using System.IO;
      
    namespace DtCms.Web.Tools
    {
        /// <summary>
        /// 显示缩略图
        /// </summary>
        public class Http_ImgLoad : IHttpHandler
        {
      
            public void ProcessRequest(HttpContext context)
            {
                int strW;
                int strH;
                if (int.TryParse(context.Request.Params["w"], out strW) && int.TryParse(context.Request.Params["h"], out strH))
                {
                    context.Response.Clear();
                    string gurl = context.Request.Params["gurl"];
                    if (!string.IsNullOrEmpty(gurl))
                    {
                        if (File.Exists(context.Server.MapPath(gurl)))
                        {
                            LoadImage.GenThumbnail(context.Request.Params["gurl"], strW, strH);
                        }
                        else
                        {
                            LoadImage.GenThumbnail("/images/nopic.gif", strW, strH);
                        }
                    }
                    else
                    {
                        LoadImage.GenThumbnail("/images/nopic.gif", strW, strH);
                    }
                }
            }
      
            public bool IsReusable
            {
                get
                {
                    return false;
                }
            }
        }
    }
  • 相关阅读:
    集合及特殊集合arrayList
    二维数组、多维数组
    一维数组

    for循坏的穷举与迭代,while、do while循环
    1.兔子生兔子问题2.打印菱形3.求100以内质数的和
    for循环嵌套
    复习题
    循环语句
    分支语句
  • 原文地址:https://www.cnblogs.com/scgw/p/2633832.html
Copyright © 2011-2022 走看看