Skip to content

Commit

Permalink
Enabled one embedded signer message (vs. two signers).
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-jk committed Aug 15, 2011
1 parent dc3526d commit 3145851
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion MS.NET/DocuSignSample/DocuSignSample/EmbedDocuSign.aspx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,14 @@ protected void SignFirst(DocuSignAPI.EnvelopeStatus status)
}

// Set the signer message
signerMessage = "Have the first signer fill out the Envelope";
if (_oneSigner)
{
signerMessage = "Have the signer fill out the Envelope";
}
else
{
signerMessage = "Have the first signer fill out the Envelope";
}
messagediv.Visible = true;

// Set the source of the iframe to the token
Expand Down

0 comments on commit 3145851

Please sign in to comment.