InterviewSettings SaveAnswersUrl Property
The URL to which answers will be posted when user clicks the Save Answers button in the browser interview. The HTTP response returned to the browser will be displayed to user.

If no value is specified, this property defaults to null (which omits the Save Answers feature).

Namespace: HotDocs.Sdk
Assembly: HotDocs.Sdk (in HotDocs.Sdk.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public string SaveAnswersUrl { get; set; }

Property Value

Type: OnlineString
Remarks

This property is equivalent to the SaveAnswersPageUrl property in the HotDocs Server API and the SaveAnswersPageUrl setting in Core Services.

Answers are sent from the browser in a set of "HDInfo" field values. Usually, all answer content will be contained in a single HDInfo value, but if the answer content is large, it may be broken up across several HDInfo values which need to be concatenated back together before use. You can use the static InterviewResponse.GetAnswers method to read and join these values from the request automatically.

See Also