Public · Protected · Private
Is it possible to bind a data to Textbox?
Type: Public  |  Created: 2008-08-24  |  Frozen: Yes
« Previous Public Blog Next Public Blog »
Comments
  • Answer is Yes class simpleclass { int a Property A { get{return a;} set{a=value} } } now in main() { simpleclass p = new simmpleclass(); p.A = 11; Textbox1.Databind(Text,p,A); }
    2008-08-24 18:20
This blog is frozen. No new comments or edits allowed.