Click here to Skip to main content
15,896,726 members
Articles / Web Development / HTML

Asynchronous HTTP Handler for Asynchronous BLOB DataReader

Rate me:
Please Sign up or sign in to vote.
4.78/5 (18 votes)
5 Sep 2006CPOL5 min read 89.1K   1.1K   75  
Includes description of an asynchronous HTTP handler (vs. alternative WebHandler) implementations that uses an asynchronous DB read operation to render a BLOB DB column as an image to any client browser.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AddImage.aspx.cs" Inherits="AddImage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>HardCoded page to add a BLOB image</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
    </div>
    </form>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer
Austria Austria
Programming since over 30 years, went though Software Development in Web/Desktop/Mobile platforms, Windows and Unix, then Software Architecture in Front-End/Middle-ware and Back-End, certified Scrum Master running different teams across the globe, now as the CTO of a Software Company.
Software development is my hobby and I still enjoy writing code...

Comments and Discussions