JanaGanaMana
Register
Login
Is it possible to bind a data to Textbox?
Which is the common property among all the validation controls?
What is an assembly?
What is CLR
What is garbage collection?
Interoprability of COM AND .NET Framework
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);
}