<!--#include file="../Connections/Connection.asp" -->
<!--#include file="../ScriptLibrary/incPU3Class.asp" -->
<!--#include file="../ScriptLibrary/incPU3Utils.asp" -->
<!--#include file="includes/Product-Edit-RS/Select-AdditionalImages.asp" -->
<!--#include file="includes/Product-Edit-RS/Select-Product.asp" -->
<!--#include file="includes/Product-Edit-RS/Select-MainImage.asp" -->
<!--include file="includes/editproduct-image-upload.asp" -->
<!--include file="includes/product-update.asp" -->
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<form action="test2.asp" method="post" enctype="multipart/form-data" name="newprodust" id="newprodust" onSubmit="return validatenewprodust(this)">
<strong>Product Details</strong>
<table border="0" cellspacing="0" cellpadding="0" class="newproducttable">
<tr>
<td class="fixedleftwidth">Product ID</td>
<td><input name="id" type="text" id="id" value="id here" /></td>
</tr>
<tr>
<td class="fixedleftwidth">Product Name</td>
<td><input name="name" type="text" id="name" value="namehere" /></td>
</tr>
<tr>
<td class="fixedleftwidth">Main Image <span class="asterix">*</span></td>
<td><input name="image1" type="file" id="image1" value="imagehere"/></td>
</tr>
<tr class="alternativerowtr">
<td class="fixedleftwidth">Second Image (Optional)</td>
<td><input name="image2" type="file" id="image2" value="imagehere2" /></td>
</tr>
<tr>
<td class="fixedleftwidth">Third Image (Optional)</td>
<td><input name="image3" type="file" id="image3" value="imagehere3" /></td>
</tr>
<tr class="alternativerowtr">
<td class="fixedleftwidth">Fourth Image (Optional)</td>
<td><input name="image4" type="file" id="image4" value="imagehere4" /></td>
</tr>
<tr>
<td class="fixedleftwidth">Fifth Image (Optional)</td>
<td><input name="image5" type="file" id="image5" value="imagehere5" /></td>
</tr>
<tr class="alternativerowtr">
<td class="fixedleftwidth">Sixth Image (Optional)</td>
<td><input name="image6" type="file" id="image6" value="imagehere6" /></td>
</tr>
</table>
<input type="submit" name="button" id="button" value="Submit" />
<input name="faction" type="hidden" id="faction" value="fupdate" />
</form>
</body>
</html>
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<p>ID : <%= Request.Form("id") %></p>
<p>Name : <%= Request.Form("name") %></p>
<p>Main Image : <%= Request.Form("image1") %></p>
<p>Image 2:</p>
<p>Image 3:</p>
<p>Image 4:</p>
<p>Image 5:</p>
<p>Image 6:</p>
<p> </p>
</body>
</html>
ASKER
Active Server Pages (ASP) is Microsoft’s first server-side engine for dynamic web pages. ASP’s support of the Component Object Model (COM) enables it to access and use compiled libraries such as DLLs. It has been superseded by ASP.NET, but will be supported by Internet Information Services (IIS) through at least 2022.
TRUSTED BY
ASKER
you may recall helping me with the following multi select combi box -
Open in new window
I've just found a slight bug, in that if only one item was selected, nothing is displayed.. more than 1 everything is displayed...
Appreciate it if you could have a quick look -
Thank you