0

私のMVC3 Razorプロジェクトでは、疑問があります。状況は次のとおりです。1)フロントエンドがあり、ファイルアップロードがあり、次のページナビゲーション用のボタンがあります。

@using (Html.BeginForm("ConvertToUniCode", "Import", FormMethod.Post, new {enctype = "multipart/form-data"})) { 

        <table>
            <tr><td></td><td></td><td></td></tr>
            <tr>
                <td>
                    <label>Choose File:<input id="selectfile" type='file' data-val="true" data-val-required="please select a file" name='file' /></label></td>
                <td>
                    <input type="submit" value="Next" /></td>
                <td></td>
            </tr>

        </table>
       }

コントローラ:

[AcceptVerbs(HttpVerbs.Post)]
        public ActionResult ConvertToUniCode(HttpPostedFileBase file)
        {
        //HttpPostedFile file= new HttpPostedFile();
            if(file.ContentLength>0)
            {
                string fileName =Path.GetFileName(file.FileName);
                string fileSavePath = Server.MapPath("~/App_Data/ImportFileHome/"+ fileName);
                file.SaveAs(fileSavePath);
                FileStream fs = new FileStream(fileSavePath, FileMode.Open, FileAccess.Read);


//Here i need to get the header coloumn values.
            }
2) In the Second page i have a DropDownListFor control for binding the header values one by one.
3) Todo that i need to read the excel sheet header coloumn values.

Excelシートはこのようになります。

-------------------------------
  Name   |   Age   | Address |    ==> Coloum Header
-------------------------------
jasper   | 26      |India    |

ヘッダー値の名前、年齢、住所を取得する必要があります。どうやってするか。

4

1 に答える 1

1

OLEDBを使用できます。これは、DataTable アプローチを使用してこのコードを定義するこの質問から収集できます。

DataTable schemaTable = connection.GetSchema("Columns");
// Each row can then get the column via:
string name = (string)row["COLUMN_NAME"];
于 2013-03-20T14:17:52.723 に答える