Hello Everyone,
I have been attempting to pass data from a GridView to the body of an email unsuccessfully, all I have managed so far is to send the email from my web form. I need your help.
My ASP.NET markup is as shown below:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="EmailTest.aspx.cs" Inherits="EmailTest" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Send Mail using Asp.net - Dotnetspan.com</title>
</head>
<body>
<asp:Label ID="lblmessage" runat="server" Visible="false"></asp:Label>
<form id="form1" runat="server">
<div>
<table>
&n ...
Go to the complete details ...