I have a Canvas control (id=cnv) along with a few Input (type=text) controls in an aspx page and an input button control. When button is clicked, it calls StartSign() which calls SignResponse(event) and that calls the function SetValues(objResponse, imageWidth, imageHeight) to render signature on the “cnv” control.
The function SetValues(objResponse, imageWidth, imageHeight) sends all Session Variables (FName, LName) as a delimited string “name” to code behind in a WebMethod which saves data to a pdf file using iTextSharp.
BUT, I do not know how to pass and save the image (signature) which is created in the function SetValues().
Please help!
179451-codeforsession.txt

