📌  相关文章
📜  img.ashx 抛出错误 <%@ WebHandler Language="C#" CodeBehind="img.ashx.cs" ...> - ActionScript 代码示例

📅  最后修改于: 2022-03-11 15:04:50.284000             🧑  作者: Mango

代码示例1
//Go to the file location of .ashx file
//Open with your favourate editor
//you may see
//<%@ WebHandler Language="C#" CodeBehind="ClassName" Class="ClassName" %>
<%@ WebHandler Language="C#" CodeBehind="img.ashx.cs" Class="MyApplication.Core.img" %>
//Replace 
//<%@ WebHandler Language="C#" CodeBehind="ClassName" Class="ClassName" %>
//with
//<%@ WebHandler Language="C#" CodeBehind="ClassName" Class="Namespace.ClassName" %>
<%@ WebHandler Language="C#" CodeBehind="img.ashx.cs" Class="MyApplication.Core.Handler.img" %>