iam stock!
i have a form where users can fill some information. it is just a part of it.
    <td style="width: 400px;">
        <%= 
Html.TextBoxFor(econtract => econtract.Name, new { style = "width: 300px" })
        %>
        <p style="margin-top: -3px;">
            Name
        </p>
    </td>
after filling it, user should send it as pdf per e-mail. my problem is, i dont know how to save a View as Pdf. after reading some different post i more and more confused. please give me some information which is clear from A to Z how to do that.