in my webpage i can fill some form with user information.
http://hotcont.eu/OnlineVertrag/EContract
after filling it i can see it again if all is filled like i wanted. now it should be send to partner.
my question, how can i read html page source of this page with filled user information inside?
i want to get page source as string an send it as HTML Body with MailMessage.
<tr>
<td style="width: 400px;">
<b style="font-size: smaller; color: #00008B;">
<%= Html.DisplayFor(model => model.NameSeller) %></b>
<p style="margin-top: 3px; border-top: solid 1px #fddf99; width: 300px;">
Vorname, Nachname</p>
</td>
<td>
<b style="font-size: smaller; color: #00008B;">
<%= Html.DisplayFor(econtract => econtract.NameBuyer)%></b>
<p style="margin-top: 3px; border-top: solid 1px #fddf99; width: 308px;">
Vorname, Nachname</p>
</td>
</tr>