I need to convert the pdf file into xml file and save after browsing the pdf file.Right now I am saving it as pdf file usin开发者_StackOverflow中文版g the following code:
if(FileUpload.HasFile)
{
FileUpload.SaveAs(@"D:\MYDOCS\" + FileUpload.FileName);
Label1.Text = "file uploaded" + FileUpload.FileName;
}
else
{
Label1.Text = "No File Uploaded.";
}
pleae help me out.. or in general please let me know hoe to convert a pdf file in to xml file.
Thanks in Advance... Reddy
This is not possible out of the box in ASP.NET. Maybe do some research into; http://www.aspose.com/categories/.net-components/aspose.pdf-for-.net/default.aspx
精彩评论