使用 ImageGen 时出现类型或命名空间错误

发布于 2024-12-08 02:27:00 字数 924 浏览 0 评论 0原文

我使用 ImageGen 来显示图像,我添加了 ImageGen.ashx 并添加了 ImageGen 的配置文件,并在 webconfig 上添加了一些设置:

<configSections>
    <section name="ImageGenConfiguration" type="ImageGen.ImageGenConfigurationHandler,ImageGen" />
</configSections>
     <ImageGenConfiguration configSource="config\ImageGen.config" />

但是当我尝试编译时出现错误:

类型或命名空间名称“ImageGen”无法被发现(您是否缺少 using 指令或程序集引用?) C:\Ergo\ImageGen.ashx 12 ImageGen.ashx 是:

<%@ WebHandler Language="c#" Class="RequestHandler" %>

public class RequestHandler : System.Web.IHttpHandler { public bool 是否可重用 { 得到{返回假; } 任何

public void ProcessRequest(System.Web.HttpContext context)
{
    ImageGen.ImageGenQueryStringParser parser = new ImageGen.ImageGenQueryStringParser();
    parser.Process(context);
    parser = null;
}

意见

或建议将不胜感激,干杯

I am using ImageGen for displaying images , I have added the ImageGen.ashx and added the config file of ImageGen plus added some settings on webconfig :

<configSections>
    <section name="ImageGenConfiguration" type="ImageGen.ImageGenConfigurationHandler,ImageGen" />
</configSections>
     <ImageGenConfiguration configSource="config\ImageGen.config" />

But when I try to compile it gives an error :

The type or namespace name 'ImageGen' could not be found (are you missing a using directive or an assembly reference?) C:\Ergo\ImageGen.ashx 12
The ImageGen.ashx is:

<%@ WebHandler Language="c#" Class="RequestHandler" %>

public class RequestHandler : System.Web.IHttpHandler
{
public bool IsReusable
{
get { return false; }
}

public void ProcessRequest(System.Web.HttpContext context)
{
    ImageGen.ImageGenQueryStringParser parser = new ImageGen.ImageGenQueryStringParser();
    parser.Process(context);
    parser = null;
}

}

Any advice or suggestion will be appreciated, Cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清风疏影 2024-12-15 02:27:00

您是否将 ImageGen.dll 复制到 bin 文件夹并在项目中引用它?

克里斯

Did you copy ImageGen.dll to your bin folder and referenced it in the project ?

Kris

玉环 2024-12-15 02:27:00

ImageGen 由三个文件组成:

  • imagegen.ashx
  • /bin/imagegen.dll
  • /config/imagegen.config (您可以更改此文件的位置,但请确保您的 web.config 条目引用其位置)

如果您使用的是 Umbraco您可以将 ImageGen 直接安装到您的站点中,并使用 Umbraco 开发人员部分中的包存储库中的所有文件和设置。或者下载 zip 文件(不要解压)并安装本地包。

要在其他站点中使用 ImageGen,您需要解压缩下载的文件并将文件放在适当的位置。该文档描述了如何执行此操作。

http://our.umbraco.org/projects/website-utilities/imagegen有下载、文档和专门的帮助论坛。

干杯,

道格。

ImageGen is made up of three files:

  • imagegen.ashx
  • /bin/imagegen.dll
  • /config/imagegen.config (you can change the location of this file but be sure your web.config entry references its location)

If you're using Umbraco you can install ImageGen directly into your site with all files and settings from the Package Repository in Umbraco's Developer section. Or download the zip file (don't unzip it) and install the local package.

To use ImageGen in another site, you'll need to unzip the downloaded file and put the files in their proper places. The documentation describes how to do this.

http://our.umbraco.org/projects/website-utilities/imagegen has the download, docs, and dedicated forum for help.

cheers,

doug.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文