Hi all,
I have create a list of public properties in our custom page. However, when I want to assign the property on any aspx file, it does not show in intellisense and when I use it it said it is a invalid attribute of element "Page".
So, 2 question.
- How do I make it such that it shows up in intellisense?
- Can I set any localize variable as a value of the property in the page directive?
Thanks!
here is the property on my base page:
/// <summary>
/// Robot meta tag
/// </summary>
[Browsable(true)]
public string Robots
{
get;
set;
}
I know that it will still work if I assigned it, but it'll be nice to have intellisense of our UI developers. The more important question is if I can set a localized value on the property within the page directive attribute.