Is it possible to bind a data to Textbox?

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);
}