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
  • 69,407
  • 21
  • 141
  • 189
Vikrant
  • 147
  • 1
  • 10

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,240
  • 2
  • 32
  • 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