Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

reading doc file in textbox using .net2005 with c#

Answer Posted / tiger skumar

We can use the files concept to load the doc file content
into the textbox using the Multiline property.

we have many ways.This is one of the way.

using System.IO;


FileStream fstream = new
FileStream("Sample.doc",FileMode.Open,FileAccess.Read);
StreamReader sreader = new StreamReader(fstream);

txtFileContent.Text = sreader.ReadToEnd();


->change your Text Box Property into tghe multilien txtbox.

Is This Answer Correct ?    5 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can we determine action invoked from HTTP GET or HTTP POST?

969


How large is the .net framework 3.0?

966


What is the difference between viewbag and viewdata in asp.net mvc?

1064


what is entity data model?

995


What are sections?

1056


how do you mark a property as required? For example, for a project, the name is a required field.

1001


What is code first? : Entity framework

1011


What is Area in ASP.Net MVC?

1040


What are the 2 popular asp.net mvc view engines?

970


what is more complex to implement property, methods or event? how can I define criteria to compare the difficulty of implementation between them? for example the number of methods wanted to implements property is 2 methods. how many methods I need it to implements events?

2155


What is MVVM design pattern?

980


What is the use of action filters in an mvc application?

1059


How we can handle the exception at controller level in ASP.Net MVC?

1030


What are HTML Helpers, AJAX Helpers in ASP.Net MVC?

978


What is entitytype? : Entity framework

936