The answer B say that is use the ResponseRewrite. In the case of an error the ResponseRewrite all ready have pass and the page have use it, so can not use it again for second time. Eg, if you have a page /super/demo.aspx that url rewrites to -> demo.aspx?a=2&b=1 this have done all ready, and the page demo.aspx have been all ready readed (how to say to the program ? now I have change my mine, and the url rewrites is something else, when all ready has make this call ?).
When inside the demo.aspx throw an error, to use again the url rewrite you need to go to the new page, and the url is going to change.
What (D) can do is to use the Page_Error, that what actually do is to capture errors from all pages on your application, and when the error thow this code reads from the error.aspx page the content and send it to the browser as it is - without change the url, with out make redirect.