施用HttpModule实现全部图片加水印

使用HttpModule实现全部图片加水印
情况是这样,一个web程序,有asp和asp.net的程序,能否用HttpModule实现:只要是asp、asp.net程序上传的图片都会加上水印?
我目前仅能实现在asp.net页面的编辑器里面批量上传的图片批量加水印,不知道这种混合程序的该怎么实现?
HttpModule 批量水印

------解决方案--------------------
1.开发两套上传
2.实施监测吧.写个service 。 后台运行。监测到有图片加上水印。或者在asp ,asp.net上传时通知这个service
------解决方案--------------------
/res.axd?icon=BuildingKey


所有图片路径都以这样的形式访问
------解决方案--------------------
以上是FineUi的方法
 Web.config  
  <httpHandlers>
      <add verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI" validate="false"/>
    </httpHandlers>


using System;
using System.Collections.Generic;
using System.Text;
using System.Web;
using System.Reflection;
using System.IO;
using System.Drawing.Imaging;

namespace FineUI
{
    /// <summary>
    /// 资源处理程序
    /// </summary>
    public class ResourceHandler : IHttpHandler
    {
        /// <summary>
        /// 处理资源的请求
        /// </summary>
        /// <param name="context">Http请求上下文</param>
        public void ProcessRequest(HttpContext context)
        {
            string type = String.Empty, 
                typeValue = String.Empty,
                resName = "FineUI.";
                

            if (!String.IsNullOrEmpty(typeValue = context.Request.QueryString["icon"]))
            {
                type = "icon";
            }
            else if (!String.IsNullOrEmpty(typeValue = context.Request.QueryString["js"]))
            {
                type = "js";
                resName += "js." + typeValue;
            }
            else if (!String.IsNullOrEmpty(typeValue = context.Request.QueryString["lang"]))
            {
                type = "lang";