Word Doument

Hi,
When I am reading the paragraphs in the word document, some paragraph text are printing with symbols(See below read text).Is there any way to display the paragraph text without these types of symbols
YOUR SOLUTIONS IN DEPTH— HYPERLINK \l “_Toc113162367” SYSTEMS RECOVERY

Document doc = new Document(@"C:\Documents and Settings\user\Desktop\SungardWord\MARKETING PS PROPOSAL_10.16.06.doc");
foreach(Section section in doc.Sections)
{
foreach(Paragraph para in section.Body.Paragraphs) 
{
Response.write(pa.GetText());
}
} 

EXECUTIVE SUMMARY
Challenges and Opportunities
The Solution
The Benefits
THE SUNGARD ADVANTAGE
Our services
Complete, customized solutions
Industry-leading infrastructure and intellectual capital
Vendor neutrality
The ability to focus on your core business
Our facilities
ADVANCEDRECOVERYSM SERVICES
Higher Availability
Advanced Recovery Solutions
Reduced IT capital expenditures
YOUR SOLUTIONS IN DEPTH— HYPERLINK \l “_Toc113162367” SYSTEMS RECOVERY
Thanks,Sailaja.

Hi
Thanks for your request. Please try using ToTxt() method instead GetText(). See the following code snippet.

Response.write(pa.ToTxt());

I hope this could help you.
Best regards