Musings
Public · Protected · Private
Is it possible to bind a data to Textbox?
-
2008-08-24 18:20Answer 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); }
This blog is frozen. No new comments or edits allowed.