Sharepoint Document Upload Page - Passing URL Variables?

5.2k Views Asked by At

Throughout my SharePoint site, I have several document repositories that are tied to primary keys from an external database. I have added custom columns in the document library metadata fields so that we will know which SharePoint documents correspond with which table entries. As a requirement, we need to have document uploads that have these fields automatically populated. For instance, I'd like to have the following url:

./Upload.aspx?ClassID=2&SystemID=63

So that when you upload any documents to this library, it automatically adds the ClassID and SystemID values to the corresponding ClassID and SystemID columns outlined in the SharePoint document library fields.

Is there any quick or easy way to do this, or will I have to completely rewrite the Upload.aspx script from scratch?

2

There are 2 best solutions below

1
On

I think the only way to go is to create your own Upload.aspx page. Read more here.

0
On

Unfortunately, it looks like going custom is the only option for now. Here are some tips on how to code the submission page.

There is a corresponding entry that describes how to add a document to a document library here:

How do you upload a file to a document library in sharepoint?

Likewise, once you have a document library file handler, you can alter its metadata column values using this method:

http://www.davehunter.co.uk/Blog/Lists/Posts/Post.aspx?List=f0e16a1a-6fa9-4130-bcab-baeb97ccc4ff&ID=109

Essentially it's just

SPFile.Item["ColumnName"] = "Value";