Frågan#1
Går det inte att få properties synliga i Properties-fönstret i VS för en User Control? Följande fungerar iaf inte för mig:
[Browsable(true),
Category("Misc"),
Description("Description here.")]
public int Foo
{
get
{
return _foo;
}
set
{
_foo = value;
}
}
Måste jag göra en web custom control?