I'm trying to follow examples found in mikesdotnetting.com to have the users record just created e-mailed to them after they click the submit button. I'm using Visual Studio 2010 with an Access Database. This form has worked since 2009, I just want to add
some extra functionality. Any direction will be greatly appreciated. Below is the entire code to the page with the attempt to obtain the last record ID using the @@Identity.
Thanks in advance.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ Page Language="VB" %>
<%@ Import Namespace="System.Net.Mail" %>
<%@ Import Namespace="System.Text" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server ...
Go to the complete details ...