.NET Tutorials, Forums, Interview Questions And Answers
Welcome :Guest
Sign In
Register
 
Win Surprise Gifts!!!
Congratulations!!!


Post New Web Links

Multiple Fileupload into the sharepoint document library using Fileupload control inside gridview

Posted By:      Posted Date: April 10, 2011    Points: 0   Category :ASP.Net
 

Hi,

how to upload multiple files to the sahrepoint document library using fileupload control inside the gridview.?

this is my form design:

<div>

<asp:Gridview id="gridview" runat ="server" autogentatecolum="false">

<columns>

<asp:TemplateField Headertext="3DFinal" runat="Server">

<ItemTemplate>

<asp:FileUpload id="Fileupload1" runat ="Server"/>

</ItemTemplate>

</asp:TemplateField>

<asp:TemplateField Headertext="2DFinal" runat="Server">

<ItemTemplate>

<asp:FileUpload id="Fileupload2" runat ="Server"/>

</ItemTemplate>

</asp:TemplateField>

<asp:TemplateField Headertext="2Conceptaul" runat="Server">

<ItemTemplate>

<asp:FileUpload id="Fileupload3" runat ="Server"/>

</ItemTemplate>

</asp:TemplateField>

</columns>

</asp:GridView>

</div>

<div>

<asp:Button id="Save" runat="server" Text="Save" onClick="btsave-Click"/>

</div>

 

If i click the save button the files should go to the sharepoint document library?

i need to uplaod multiple files to the document libray using file upload inside the gridview..

any one know about this file


View Complete Post


More Related Resource Links

Multiple file upload to the sharepoint document library using file upload control inside the gridvie

  

how to upload multiple files to the sharepoint document library using fileupload control inside the gridview.

form design is

<asp:GridView id="gridview1" runat="server"  autogenteratecolumn="false">

<asp:TemplateField HeaderText="3DFinal">

<ItemTemplate>

<asp:FileUpload id ="Fileupload" runat="Server"/>

</ItemTemplate>

</asp:TemplateField>

<asp:TemplateField HeaderText="2DFinal">

<ItemTemplate>

<asp:FileUpload id ="Fileupload2" runat="Server"/>

</ItemTemplate>

</asp:TemplateField>

<asp:TemplateField HeaderText="Final">

<ItemTemplate>

<asp:FileUpload id ="Fileupload3" runat="Server"/>

</ItemTemplate>

</asp:TemplateField>

</asp:GridView>

 

<asp:Button Id="Buuton1" runat="server" text="Save"/>

if i click save button files should go to my sharepoint document library.

if any one know pls help me...

 

thanks,

ANNT


ASP:Upload control . Uploading into a SharePoint Document Library Subfolder and FILE NOT FOUND error

  
RE: ASP:Upload control . Uploading into a SharePoint Document Library Subfolder and FILE NOT FOUND error Two Issues, apparently unrelated. I have subfolders like this /ApplicantDocuments/20 and /ApplicantDocuments/21 (where 20 and 21 are my subfolders and ApplicantDocuments is my library. 1. The below function is erroring with file not found, but I confirmed I'm sending the fully qualify path (i.e c:\test.txt) to System.IO.FileStream content = System.IO.File.Open(documentFileName, System.IO.FileMode.Open); 2. Even if it worked, looking at the code, I'm not using argument foldername.  I'm passing 20 to the argument. How can I make sure it uploads into subfolder 20 of ApplicantDocuments? Thank you.     Just testing in test environment. Will tighten code once it works.   public void UploadDocumentToSite(string foldername, string documentFileName) {      SPSite siteCollection = new SPSite("https://xxxxxx");      SPWeb web = siteCollection.OpenWeb();      //SPSite.AllowUnsafeUpdates = true;      //Web.AllowUnsafeUpdates = true;      string Lib = "ApplicantDocuments";      SPFolder destFolder = web.GetFolder(Lib);      sendmail(documentFileName+" "+foldername);  

2010 SharePoint global setting for document Library version control?

  

Apparently new Document Libraries created in Sharepoint are no longer set up the way we would like as far as version control.  Is there any way to set up SP so that any new document library created has specific settings, through Central admin control?


Jack Galante Sr Systems Engineer

i do see that previous versions this was not possible, but was curious if they changed this in 2010?


Accessing the different controls inside a GridView control

  
how we can access a particular control which resides inside a GridView control. In this article I will show you how you can access different controls inside a GridView control. We will see how we can access a TextBox control, a DropDownList control and a ListBox control. If you are working with ASP.NET 1.X then you might want to check out my article Accessing Different Controls Inside a DataGrid.

How To Add calendar control inside a GridView

  
This article show hot to add calendar control inside a GridView with code in c#

Using ATLAS PopUp Control with Calendar inside the GridView Control

  
In this video tutorial Mohammad demonstrates how you can access the Calendar control which is displayed using the ATLAS PopUp control inside the GridView control.

GridView Multiple Filter AJAX Control

  
This AJAX control enables the user to filter data within any column inside a GridView. The user can add multiple filters and can delete existing ones too.

Upload a File to a SharePoint Document Library - Part I

  
The following helper class demonstrates a few techniques that allow documents to be uploaded to a SharePoint document library programmatically without using the API or a custom web service. You don't need to specify a document library name, and it will create any folders specified in the URL as required. File meta data will be updated if any properties are passed.

Server side validation of Fileupload control not working

  
 

 


I've tried this method in my code behind to try and validate that the Fileupload control has a file or not. I get the error message the the event "Server Validate" cannot be found. Can anyone tell why? Thanks.


Public Sub CustomValidator1_ServerValidate(ByVal source As Object, ByVal args As System.Web.UI.WebControls.ServerValidateEventArgs) Handles CustomValidator1.ServerValidate
       

' Get file name

        Dim uploadAvatar As FileUpload = DirectCast(AdvertisementForm.FindControl("uploadAvatar"), FileUpload)

        Dim UploadFileName As String = uploadAvatar.PostedFile.FileName

        If UploadFileName = "" Then
            ' There is no file selected
            args.IsValid = False
        Else
            Dim Extension As String = UploadFileName.Substring(UploadFileName.L

find a Control inside a GridView using jQuery

  

I have databound GridView in my page and I have a hidden DIV in all rows. Each row contains a Button that I want it to make the DIV visible for me! how can I use that with jQuery?!


here is the code page: 


<asp:GridView ID="GridView2" runat="server" AutoGenerateColumns="False" 
                                EnableModelValidation="True" GridLines="None" ShowHeader="False" Width="100%">
                                <Columns>
                                    <asp:T
Categories: 
ASP.NetWindows Application  .NET Framework  C#  VB.Net  ADO.Net  
Sql Server  SharePoint  Silverlight  Others  All   

Hall of Fame    Twitter   Terms of Service    Privacy Policy    Contact Us    Archives   Tell A Friend