A
Alexander Widera
I have a page with the following code for example:
<%@ Page Language="C#" ContentType="text/html" ResponseEncoding="iso-8859-1"
Debug="true"%>
<script runat="server">
void Page_Load(object sender, EventArgs e)
{
texttoview.Text = "this is the text";
}
</script>
<!--#include virtual="/templates/Head.aspx" -->
<title>Title of the page</title>
</head>
<body>
<form runat="server">
<asp:Label runat="server" ID="texttoview" />
</form>
<!--#include virtual="/templates/Footer.aspx" -->
After this page is "generated", or better said the html-code of this page, I
want to send this html-code by email to someone.
How can i make this possible? On this page could be a button, which causes
the sending-process on click.
thank you for your help.
<%@ Page Language="C#" ContentType="text/html" ResponseEncoding="iso-8859-1"
Debug="true"%>
<script runat="server">
void Page_Load(object sender, EventArgs e)
{
texttoview.Text = "this is the text";
}
</script>
<!--#include virtual="/templates/Head.aspx" -->
<title>Title of the page</title>
</head>
<body>
<form runat="server">
<asp:Label runat="server" ID="texttoview" />
</form>
<!--#include virtual="/templates/Footer.aspx" -->
After this page is "generated", or better said the html-code of this page, I
want to send this html-code by email to someone.
How can i make this possible? On this page could be a button, which causes
the sending-process on click.
thank you for your help.