I was recieving this error in ASP.net. The cause of the error was the following line:
Response.Headers.Add(“content-disposition”, “inline; filename=\”somefile.txt\”");
The workaround I used for this was to use the AddHeader method instead:
Response.AddHeader(“content-disposition”, “inline; filename=\”somfile.txt\”");
Comments on: "This operation requires IIS integrated pipeline mode." (1)
[...] This operation requires IIS integrated pipeline mode.. Share this:TwitterFacebookLike this:LikeBe the first to like this. « Previous post [...]