This is a migrated thread and some comments may be shown as answers.

AsyncUpload Additional fields Server side

2 Answers 83 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
Ted
Top achievements
Rank 1
Ted asked on 23 Jan 2011, 11:41 PM
How can I use the values of the additional fields server side?.  I'm basically using the same code as this demo
http://demos.telerik.com/aspnet-ajax/upload/examples/additionalfields/defaultcs.aspx

then using this on the server side but the file.GetFieldValue is not working.  can you tell me what I need to do to get the values on the server side?


foreach (UploadedFile file in _RadAsyncUpload1.UploadedFiles)
            {
                string t = file.FileName;
                string q = file.GetFieldValue("Source");
            }

2 Answers, 1 is accepted

Sort by
0
Dimitar Terziev
Telerik team
answered on 25 Jan 2011, 05:48 PM
Hello Ted,

RadAsyncUpload doesn't support the functionality of the Additional Fields as RadUpload. This functionality will be added in the upcoming Q1 release.

All the best,
Dimitar Terziev
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0
Ted
Top achievements
Rank 1
answered on 25 Jan 2011, 06:04 PM
Thank you.  for now I ended up using a grid to get my results.  sort of like what you have in your demo
http://demos.telerik.com/aspnet-ajax/controls/examples/integration/gridandradasyncupload/defaultcs.aspx?product=upload
Tags
AsyncUpload
Asked by
Ted
Top achievements
Rank 1
Answers by
Dimitar Terziev
Telerik team
Ted
Top achievements
Rank 1
Share this question
or