Answers for "img.ashx throw error <%@ WebHandler Language="C#" CodeBehind="img.ashx.cs" ...>"

0

img.ashx throw error <%@ WebHandler Language="C#" CodeBehind="img.ashx.cs" ...>

//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" %>
Posted by: Guest on June-25-2021

Code answers related to "img.ashx throw error <%@ WebHandler Language="C#" CodeBehind="img.ashx.cs" ...>"

Code answers related to "ActionScript"

Browse Popular Code Answers by Language