jxbma
asked on
Is it possible to build an Asp.Net Core Razor page control that allows users to sign their names?
I am building an Asp.Net Core web application using Razor. The intended audience for this app will be using it on tablets. Part of the application consists of several pages/forms that will require user signatures. We could retrieve an image of a user's signature and display that on demand in the web page.
Is it possible to be more interactive and allow users to "sign" the form/page within the browser? Are there any 3rd party control libraries that would support this functionality? I pretty sure this can be done on native applications, but can I achieve this through Asp.Net Core?
Is it possible to be more interactive and allow users to "sign" the form/page within the browser? Are there any 3rd party control libraries that would support this functionality? I pretty sure this can be done on native applications, but can I achieve this through Asp.Net Core?
ASKER
Looking for the cheque signing model.
The user fills out a bunch of fields on the form, signs it at the bottom (at that point I generate a PDF from that).
Like I mentioned, I'm sure it would be easier if I was building apps native to the device (as opposed to a browser hosted Asp.Net application).
If I can't find something that will work in the model, I can always simulate the signing by displaying the name entered by the user in a cursive font as a fall back plan.
Thoughts?
The user fills out a bunch of fields on the form, signs it at the bottom (at that point I generate a PDF from that).
Like I mentioned, I'm sure it would be easier if I was building apps native to the device (as opposed to a browser hosted Asp.Net application).
If I can't find something that will work in the model, I can always simulate the signing by displaying the name entered by the user in a cursive font as a fall back plan.
Thoughts?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
There is the signature i.e. a graphic that represents what you would see on a physical cheque.
there is document signing which is a way of determining the author using a cryptographic algorithm using Public Key Infrastructure which adds certificate to the file where if the file is changed the signature will be invalid if the signature is valid you can query the certificate to see who signed the certificate and who issued the certificate and its valid dates.
or you could use a script font that emulates a written signature.