Help Scanning Custom Web Controls
Hi,
I am using the Multi Language Plugin on my Asp .Net website. I have written a control that inherits from WebControl but the Text property is not getting added to the translation list when I scan my project.
The next property on the Web Control is shown below:
Localizable(true),
Bindable(true),
Category(%22Appearance%22),
DefaultValue(%22%22),
Description(%22The text to display within the hyperlink.%22)
public virtual string Text {
get {
object o = ViewState%22Text%22;
return ((o == null) ? String.Empty : (string)o);
}
set {
ViewState%22Text%22 = value;
}
}
How can I get the scan to detect all the Text properties for the control so I can select their contents for translation?
Thanks
Robin