Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello Friends

1.In Asp.net How to use BO(Business Object) and main purpose of BO ?
2. How to create textbox object in BO ?




Thanks
Posted

Main Purpose
Business applications commonly employ an encapsulated data model that uses a middle- tier data access layer or business component. Typically, in a Web application, you must write not only the code for the business data object, but additional code to communicate with the component, and more code to bind controls to the data managed by the component. The ASP.NET data source control model simplifies working with a business component and greatly reduces or eliminates the code you must write by providing the ObjectDataSource control, LINQ to SQL classes, and the LinqDataSource control.


You can create a textbox object like following below
private string title;
   public String Title {
     get { return title; }
     set { title = value; }
   }
 
Share this answer
 
v2
Check this CP article

An Introduction to Business Objects in C#[^]

Business Object Introduction[^]

else check this google[^] result..

Hope it will help..
 
Share this answer
 
Comments
Thanks7872 21-Aug-14 2:08am    
Why not to consider your posts as reputation hunting? It can't be the case that OP failed to search through google all the time. You always extract the question text, search it with Google and posting two three links as solution. Some times even irrelevant ones.

Why?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900