I currently have a input form where the user can register to a website I have created this form In MVC but NOT using razor but using the ASPX view engine and for this reason I am unable to find examples which help. However, once the user has completed the form I want the results from the form to be converted to a pdf file and then that pdf file to be sent to a specific email address.
The input form is all done in HTML and CSS so I have only used InputBoxes such as:
<input id="Name" type="text">
After a few more fields I have a submit button like:
<input id="Submit" type="submit">
I didn't include the full HTML code because its just repetition but if you would like the full code let me know
I know doing this is quite extensive I probably first need to start with a PDF conversion tool but is there any other ways of doing this can someone direct me in the right direction?