%@ Language=VBScript %> <% Updated = Request.QueryString("Updated") %> <% PageTitle = "SiteManager - Delete New Product" %> <% PageID=200 %> <% Header %> <% Menu PageID %> <%' Main body of page goes here ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ %> <%ProdDeleteConfirm%> <%' End Of Main body ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ %> <% Footer %> <% Sub ProdDeleteConfirm%>
<%= FormatDateTime(Date,1) %>
<% ProdID = Request.QueryString("PID") SEL="SELECT txtProduct FROM Products 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 New Product database?
<%End Sub %>