我想知道如何在 asp.net 页面的 pdf 文件中上传简历。我知道如何上传一个简单的 txt 文件,以及字段何时用“,”分隔。这是我的代码。
using System.IO;
string uploadfile = Server.MapPath("~/uploads3/") + FileUpload1.FileName;
FileUpload1.PostedFile.SaveAs(uploadfile);
if (File.Exists(uploadfile))
{
string inputline = "";
using (StreamReader sr = File.OpenText(uploadfile))
{
while ((inputline = sr.ReadLine()) != null)
{
string tempstr = inputline;
string firstname = tempstr.Substring(0, tempstr.IndexOf(","));
tempstr = tempstr.Substring(tempstr.IndexOf(",") + 1);
string lastname = tempstr.Substring(0, tempstr.IndexOf(","));
tempstr = tempstr.Substring(tempstr.IndexOf(",") + 1);
(...)
现在,我完全不知道如何在包含简历的 pdf 文件上执行此操作。怎么做?请解释您的答案,我只是 system.io 的新手。再次感谢。