TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Kishore Kumar
NA
29
3.8k
How to show progress bar with percentage while uploading WP8
Jul 28 2014 6:28 AM
Here is my code for uploading,
byte[] buffer = PhoneApplicationService.Current.State["audiorecordedbytes"] as byte[];
string url = ServiceOperations.Service_ImageUpload;
var parameters = new Dictionary<string, object>();
parameters.Add("FileName", filename);
parameters.Add("photo", buffer);
this._currentPostTask = new HttpPostTask(url, parameters, this.OnPostCompleted);
this._currentPostTask.Execute();
I want to show Progressbar with percentage, in WebClient we are having the ProgressChangedEvent for downloading not for uploading.Using HttpWebRequest we don't have such type of events.How can I show Progressbar with percentage in windows Phone 8.
Thanks in advance.
Reply
Answers (
0
)
How to create table structure in windows phone 8 app?
Show ProgressBar with percentage while uploading in WP8