i get this error
Parser Error Message: Could not create type \'charts.lineChartData\'.
Source Error:
Line 1: <%@ WebHandler Language=\"C#\" CodeBehin
I had this.. fixed it.. thought I'd share
if you right click the .asmx file and select view markup you'll see it still says
<%@ WebService Language="C#" CodeBehind="MyService.asmx.cs" Class="MyProject.Service1" %>
maybe not Service1.. but won't be the class you've just made
<%@ WebService Language="C#" CodeBehind="MyService.asmx.cs" Class="MyProject.MyService" %>
save it.. try it..
worked for me..