>wie weise ich allen Multiline Textboxen einer Seite (programmtechnisch) die
gleiche Breite und Höhe zu?

Foreach(Control t in this.Controls)
        {
                if(t is TextBox)
                        {
                                if(t.Multiline == true)
                                        {
                                                t.Width = 200;
                                        }
                        }
        }

Aber nicht einfach abschreiben. Ist nur so ungefähr aus der Hand getipselt.

Reinhold


_______________________________________________
Asp.net Mailingliste, Postings senden an:
Asp.net@glengamoi.com
An-/Abmeldung und Suchfunktion unter:
http://www.glengamoi.com/mailman/listinfo/asp.net

Antwort per Email an