Cookie Consent by Free Privacy Policy Generator
Privacy
Polipone
<settembre 2024>
lunmarmergiovensabdom
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456
Immagini  

ASP.NET - propietà BROWSABLE per user control

Una proprietà BROWSABLE per uno User Control è una proprietà che può essere impostata nel codice HTML della pagina quando si usa il tag dello User Control.
Per definire una proprietà di questo tipo si deve importare l'assembly System.Web.UI.WebControls e quindi definire la proprietà in questo modo

private string _myVal = "";
    [Browsable(true)]
    public string Value
    {
        get { return _myVal; }
        set { _myVal= value; }
    }


Notifiche