Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
168 views
in Technique[技术] by (71.8m points)

c# - How to use web handlers for PDF creation?

I have pretty less knowledge in web handlers. All I know is web handlers are used for creating some dynamic file creation purpose.

And also I know how to add the Web handlers.

But, I need to use web handlers in my ASP.NET project for PDF creation purpose.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Read What is an HttpHandler in ASP.NET and MSDN: HTTP Handlers and HTTP Modules Overview.

You do not need a handler to serve files for downloading over HTTP. You can also generate and return a file response in a WebForms page, as well as from ASP.NET MVC and WebAPI.

Depending on the technology you use, check out:

Of course, any layer on top of a handler (as opposed to running your code from a handler directly) adds additional overhead (though it'll be minimal), where I suspect WebForms to be the heaviest. MVC and WebAPI are run through the MvcHandler.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...