2010-09-29 148 views
1

我們正在開展一項使用SharePoint 2010創建Web應用程序的任務,這對我們所有人來說都是全新的。SharePoint 2010

我的挑戰是創建一個文件上傳表單。我使用SharePoint設計器從ASP.NET工具框中拖動上傳texbox和按鈕控件。我不知道下一步該怎麼做,因爲我需要這些文件去我想要的地方。

這裏是我有我的頁面上的地點理想的控制代碼:

<form id="form1" runat="server"> 
<asp:FileUpload runat="server" id="FileUpload1" /><br /> 
<br /> 
<asp:Button runat="server" Text="Upload" id="Button1" Width="88px" /> 
</form> 
+0

您想要文件去哪裏?你正在上傳文件嗎? – Shaneo 2010-09-30 11:10:48

回答

0

這個程序將上傳單個文件假設你已經實現了你的頁面上的FileUpload控件。該例程從FileUpload控件獲取文件名並將其添加到SharePoint列表中:

protected void UploadButton_Click(object sender, EventArgs e) 
    //================================================= 
    // upload the file selected in the upload button to the library 
    // 
    //================================================= 
    { 
     string docLibName = "/documents/Forms/AllItems.aspx"; 

     if (FileUpload.HasFile) 
     { 
      try 
      { 
       int orderID = Convert.ToInt32(ViewState["OrderID"].ToString()); 
       string status = ddlDocumentStatus.SelectedValue; 
       string docType = ddlDocumentType.SelectedValue; 

       // Read the file contents into a byte stream 
       string filename = FileUpload.FileName; 
       byte[] contents = new byte[FileUpload.FileContent.Length]; 
       System.IO.Stream myStream; 
       int fileLen = FileUpload.PostedFile.ContentLength; 
       myStream = FileUpload.FileContent; 
       myStream.Read(contents, 0, fileLen); 

       // Upload the file to "Documents" Library 
       using (SPSite oSite = new SPSite(_siteURL)) 
       using (SPWeb oWeb = oSite.OpenWeb()) 
       { 
        docLibName = _siteURL + docLibName; 

        SPWeb site = new SPSite(docLibName).OpenWeb(); 

        // Copy the file to the sharepoint library 
        SPFolder myLibrary = oWeb.Folders["Documents"]; 

        // try checking out the file, if it doesn't exist, create it: 
        SPFile spfile = null; 

        try 
        { 
         spfile = oWeb.GetFile(_siteURL + "/Documents/" + filename); 

         if (spfile.Exists) 
         { 
          spfile.CheckOut(); 
          myLibrary.Files.Add(filename, myStream, true); 
         } 
         else // create a new document 
         { 
          spfile = myLibrary.Files.Add(filename, myStream, true); 
         } 

         SPListItem document = spfile.Item; 
         // Copy the metadata to the document 
         //spfile.Item; 

         // update the metadata for the document here 

         document["Columns Name"] = some_string_value; 
         document["Document Type"] = docType; 

         myLibrary.Update(); 
         document.Update(); 
         spfile.CheckIn("Document updated on " + DateTime.Today.ToString()); 
        } 
        catch (Exception ex) 
        { 
         string errorMessage = ex.Message; 
        } 

        // update the sharepoint list 
        SPList docLib = oWeb.Lists["Documents"]; 
        AddDocuments(orderID, docLib); 
        lblDocumentMessage.Text = "Document uploaded!"; 
       }// using - Disposes Site and web 
      }// try 
      catch (Exception ex) 
      { 
       string errorMessage = ex.Message; 
       lblDocumentMessage.Text = "Document upload error: " + errorMessage; 
      } 
     } 
    }