Hello Telerik.
Just like in your documentation:
Client:
Just like in your documentation:
Client:
private void radUpload_FileUploadStarting( object sender, FileUploadStartingEventArgs e )
{
e.FileParameters.Add( "MyPath", "MyFileValue" );
}
Server:
public override void ProcessStream()
{
string myParam = this.Request.Form[ "MyPath" ];
base.ProcessStream();
}
Wrong!!!!!
The key has been modified to 0_MyPath. So MyPath is null and 0_MyPath has correct value.
Thanks Tom
{
e.FileParameters.Add( "MyPath", "MyFileValue" );
}
Server:
public override void ProcessStream()
{
string myParam = this.Request.Form[ "MyPath" ];
base.ProcessStream();
}
Wrong!!!!!
The key has been modified to 0_MyPath. So MyPath is null and 0_MyPath has correct value.
Thanks Tom
5 Answers, 1 is accepted
0
Hello tomas,
Can you tell us where are you reading this. This is the old way of getting the parameters. The current one is described here:
http://www.telerik.com/help/silverlight/radupload-features-upload-service-parameters.html
Kind regards,
Valentin.Stoychev
the Telerik team
Can you tell us where are you reading this. This is the old way of getting the parameters. The current one is described here:
http://www.telerik.com/help/silverlight/radupload-features-upload-service-parameters.html
Kind regards,
Valentin.Stoychev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0

tomas
Top achievements
Rank 1
answered on 27 Jul 2010, 08:47 PM
From your offline documentation (F1 help).
My version is Q2 2010.
Tom
My version is Q2 2010.
Tom
0
Hi tomas,
Thank you for reporting this. Please let us know if you have any isse by using the upload following the online help articles.
Kind regards,
Valentin.Stoychev
the Telerik team
Thank you for reporting this. Please let us know if you have any isse by using the upload following the online help articles.
Kind regards,
Valentin.Stoychev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0

tomas
Top achievements
Rank 1
answered on 30 Jul 2010, 08:15 PM
Hello Telerik.
Do you mean it seriously? I would expect something like: We are very sorry. Here are your Telerik points.
Don't offer offline help at all or keep it current. But something like: "An offline help is provided, but may be obsolete" is really not very useful.
:-(
Thanks Tom
Do you mean it seriously? I would expect something like: We are very sorry. Here are your Telerik points.
Don't offer offline help at all or keep it current. But something like: "An offline help is provided, but may be obsolete" is really not very useful.
:-(
Thanks Tom
0
Hello tomas,
The online documentation is always up to date. We are updating it each week. The offline documentation is updated only when you are using the installer to install the products, so it is expected that the online version is newer than the offline one.
I hope this makes it more clear!
Greetings,
Valentin.Stoychev
the Telerik team
The online documentation is always up to date. We are updating it each week. The offline documentation is updated only when you are using the installer to install the products, so it is expected that the online version is newer than the offline one.
I hope this makes it more clear!
Greetings,
Valentin.Stoychev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items