<%@ Language=VBScript %> <% Updated = Request.QueryString("Updated") %> <% PageTitle = "SiteManager - Delete Product" %> <% PageID=250 %> <% Header %> <% Menu PageID %> <%' Main body of page goes here ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ %> <%UProdDeleteConfirm%> <%' End Of Main body ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ %> <% Footer %> <% Sub UProdDeleteConfirm%>

<%= FormatDateTime(Date,1) %>

<% ProdID = Request.QueryString("PID") SEL="SELECT txtProduct FROM UProducts WHERE ProductID ="&ProdID Set rs=Server.CreateObject("ADODB.Recordset") OpenConnection1 rs.Open SEL,DB,1,3 txtProductName=rs("txtProduct") rs.Close %>

Are you sure you want to remove <%=txtProductName%> from the Used Product database?


YES                    NO

 

<%End Sub %>