使用 ImageGen 时出现类型或命名空间错误
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否将 ImageGen.dll 复制到 bin 文件夹并在项目中引用它?
克里斯
Did you copy ImageGen.dll to your bin folder and referenced it in the project ?
Kris
ImageGen 由三个文件组成:
如果您使用的是 Umbraco您可以将 ImageGen 直接安装到您的站点中,并使用 Umbraco 开发人员部分中的包存储库中的所有文件和设置。或者下载 zip 文件(不要解压)并安装本地包。
要在其他站点中使用 ImageGen,您需要解压缩下载的文件并将文件放在适当的位置。该文档描述了如何执行此操作。
http://our.umbraco.org/projects/website-utilities/imagegen有下载、文档和专门的帮助论坛。
干杯,
道格。
ImageGen is made up of three files:
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.