Place the following on top of page.
<% Session("Count") = Session("Count") + 1 %>
Use this where you send the mail.
<%
If Session("Count") = 1 Then
(SEND THE MAIL)
End If
%>
This way the mail can only be sent once, i.e., when the count is one. If you need to send it again reset the count...
I have a webpage that uploads1 to 7 images using persits.upload. In the process I rename them xx(1).jpg, xx(2).jpg, etc. In some cases the images have to be reordered where I change the (1) to a (6) and the (6) to a (1) or any other combination.
This works fine and the images on the server are...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.