Hi sir,
Tell me the steps to view the uploaded word file in browser. I have successfully uploaded the word file in the application folder, but i cant able
to view the uploaded word file in browser. Kindly give me the solution for this problem. I attached the code below for your reference.
(Note: In naukri website, if i uploaded word file like resume it is displaying in browser, like that i need]
Default.aspx:
*******************
<asp:Label ID="Label1" runat="server" Text="Please select the file to upload"></asp:Label>
<asp:FileUpload ID="FileUpload1" runat="server" />
<asp:Button ID="Button1" runat="server" Text="Upload" onclick="Button1_Click" />
Default.aspx.cs:
******************
protected void Button1_Click(object sender, EventArgs e)
{
Response.ContentType = "Application/msword";
//Get the physical path to the file.
string FilePath = MapPath("BuildingDataAccessComponent.doc");
//Write the file directly to the HTTP content output stream.
Response.WriteFile(FilePath);
Response.End();
}
With regards,
J.Prabu.
[Email:prbspark@gmail.com]