If I wanted to change the background from white to black within this
page do I add black after body to the background color
<%@ Language=VBScript %>
<%Option Explicit%>
<!--#include file="_scripts/server/main.asp"-->
<%
Dim objStore, objRS
Dim vProductID
vProductID = ConvertToNumber(Request("ProdID"))
Set objStore = Server.CreateObject(afStoreStore)
Set objRS = objStore.GetProductImages(vProductID)
%>
<html>
<head>
<title><%=objRS("Name").value%></title>
<%=Settings("PageMeta")%>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0"
height="100%">
<tr>
<td align="center" valign="middle"><img
src="<%=objRS("Image").Value%>"></td>
</tr>
</table>
</body>
</html>
<%
Set objRS = Nothing
AddErrors etApplication, objStore.Errors
Set objStore = Nothing
%>
thanks
naru
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/