我们应该为Dictionary属性使用什么内联语法?
<recaptcha:RecaptchaControl ID="recap" CustomTranslations="string, string" Runat="server"/>
我知道这可以通过编程实现,但我希望不会。
答案 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, "}")); }
}