now on to the next problem, this time i do not even get an compiler error, but an access violation error.....
this is the code
type
tmyhandler = class(TInterfacedObject, IHttpHandler, IRequiresSessionState)
procedure IHttpHandler.ProcessRequest = myProcessRequest;
procedure myProcessRequest(ByVal: System.Web.HttpContext): System.Web.IHttpHandler.ProcessRequest
end;
begin
procedure tcontext.myprocessrequest(ByVal: System.Web.HttpContext): System.Web.IHttpHandler.ProcessRequest
begin
response.write('Hello world!');
end;
Now i must be doing something wrong again....
|