开发者

how to convert pdf file into xml file in C# .net?

开发者 https://www.devze.com 2022-12-10 21:53 出处:网络
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:

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

0

精彩评论

暂无评论...
验证码 换一张
取 消