0

Below is my blob url where my word file is located, and I want to read the file and show its content in my web form(C#).

https://vikranttest.blob.core.windows.net/Vikrantproduction/applicationeulaVikrant/vikky.rtf

David Makogon
  • 67,251
  • 21
  • 140
  • 181
Vikrant
  • 147
  • 1
  • 9

1 Answers1

2
WebClient client = new WebClient();
string fileString = client.DownloadString(new uri(http://.....)));

Now if you put that string into a rtf box it should keep the formatting.

Haedrian
  • 4,220
  • 2
  • 35
  • 53
  • thanks Haedrain, but when I am filling this string into text of freetextbox(FreeTextBox.dll) it is not formatted. how do I formate it – Vikrant Nov 12 '11 at 09:21