PdfSubmitAction submitAction = new PdfSubmitAction("http://stevex.net/dump.php");
submitAction.DataFormat = SubmitDataFormat.Html;
The problem is no http site is without login credentials. Otherwise, anyone could submit to http://google.com for instance and dump stuff on their site. Surely there must be a workaround otherwise I can't understand in what type of circumstance the PDFSubmitAction action might be useful.
Thanks!
PdfSubmitAction submitAction = new PdfSubmitAction("http://localhost:51912/Submit.aspx");
submitAction.DataFormat = SubmitDataFormat.Html;
submitButton.Actions.GotFocus = submitAction; |