ASP.NET reCaptcha CustomTranslations内联语法

时间:2013-01-09 14:35:49

标签: asp.net json dictionary recaptcha

我们应该为Dictionary属性使用什么内联语法?

<recaptcha:RecaptchaControl ID="recap" CustomTranslations="string, string" Runat="server"/>

我知道这可以通过编程实现,但我希望不会。

1 个答案:

答案 0 :(得分:0)

经过一天的挣扎,我通过Json .NET框架使用反序列化方法来定制reCaptcha。

使用System.Web.Script.Serialization;

[类别( “外观”)]
[默认值(空)]
public string CustomTranslations
{
            get { return new JavaScriptSerializer().Serialize((object)this.customTranslations); }
set { this.customTranslations = new JavaScriptSerializer().Deserialize<Dictionary<string, string>>(String.Concat("{", value, "}")); }

}