dbWriter Picture resize ASP code
I found the aspx code that works just fine with ASP to resize
your pictures.
It uses QueryString value "FileName" for your file location.
and
and QueryString value "ScaleFactor" 0 to 100 to size your pic.
Download Resize.aspx - Click here
| <% Resize.aspx?FileName=YourFileName&ScaleFactor=YourScaleFactor
'IF your pictures are loaded in a
database here is an example of it's use.
<a name="<% = itm_ID%>"><img alt="<% = itm_Name%>" src="<%=PicLocation%>Resize.aspx?
(...line is wrapped)
FileName=<%
= prod_pic%>&ScaleFactor=<% = scale_fac%>" border="0"
align="left"></a>
%>
|
|