To do this using COM, the following code should get you
started in the right direction (writtin VBScript):
<%
Dim RasterObj
Dim RasterIO
Set RasterObj = Server.CreateObject("LEADRaster.LEADRaster")
Set RasterIO = Server.CreateObject("LEADRaster.LEADRasterIO")
Dim SAVE_OVERWRITE = 0
Dim FILE_JPEG = 10
Dim filepath = "path to your multipage tiff here"
Dim page = number of page to display
RasterIO.Load RasterObj, filepath, 0, page, 1
Dim savepath = "path to save image"
RasterIO.Save RasterObj, savepath, FILE_JPEG, 24, 2, SAVE_OVERWRITE
Response.Write "<img src='"+savepath+"'>"
%>
Make sure that you initialize the filename, page, and
savepath variables accordingly.
If you are not using the COM interface, can you tell me what
LEADTOOLS version and interface (COM, OCX,
API, etc.) you are using?