FormEditor.SetSubmitUrl

FormEditor.SetSubmitUrl method

Sets URL of the button.

public bool SetSubmitUrl(string fieldName, string url)
ParameterTypeDescription
fieldNameStringSubmit button name.
urlStringFully qualified URL.

Return Value

true if URL for button was successfully set.

Examples

FormEditor formEditor = new FormEditor("PdfForm.pdf", "FormEditor_SetSubmitUrl.pdf");
formEditor.SetSubmitUrl("btnSubmit", "www.mysite.com");

See Also