Đang chuẩn bị liên kết để tải về tài liệu:
mcts 70-562 Microsoft .NET Framework 3.5, ASP.NET Application Development phần 8

Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG

Đây là kết quả của dịch vụ Web làm việc giống như một trang Web. Cả hai đều có một URL trỏ đến một tập tin. Do đó, bạn có thể khóa tập tin này giống như bạn sẽ bất kỳ tài nguyên ASP.NET. Mỗi tùy chọn bảo mật ASP.NET đến Sau đây đại diện cho nội dung của file Web.config được tìm thấy bên trong thư mục Quản lý sau khi hoạt động này: | C public void ProcessRequest HttpContext context context.Response.ContentType image jpeg context.Response.TransmitFile @ C Users Public Pictures Sample Pictures dock.jpg NOTE DEFINING THE MIME TYPE Note that this code sample sets the context.Response.ContentType property to image jpeg. You should use this property to define the correct Multipurpose Internet Mail Extensions MIME type so that the browser knows how to handle the file you send it. Otherwise the browser might try to display it as text. 7. Open the Web.config file. Navigate to the httpHandlers node. Add a handler that maps the .jpg file extension to your ImageHandler class. The following markup demonstrates this configuration system.web httpHandlers add verb path .jpg type ImageHandler httpHandlers system.web configuration 8. Open Default.aspx in the designer. Drag an Image control to the page. Change the ImageUrl property to Test.jpg. This file does not exist so a placeholder is displayed in the designer. However this is a request for a jpg file. Your HttpHandler will intercept this request and display the image as defined in the ProcessRequest code it will display Dock.jpg . 9. Run your application using the local Web application server and not IIS . The local Web server will simulate the custom handler. You can verify the results in a browser window. Lesson Summary You can catch unhandled exceptions at the page level by responding to Page_Error or at the application level by responding to Application_Error. In either event handler you read the last error by calling Server.GetLastError. Then you must remove it from the queue by calling Server.ClearError. Lesson 1 Using Web Site Programmability CHAPTER 11 727 You can call WebConfigurationManager.GetSection to return a configuration section from the Web.config file. You cast the returned object to the section-specific type. If you make an update to the configuration settings write the changes by calling Configuration.Save or Configuration.SaveAs. .

TÀI LIỆU LIÊN QUAN
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.