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
Show ProgressBar with percentage while uploading in WP8
Jul 28 2014 6:29 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();
But I want to show Progressbar with percentage, in webclient we are having the progresschangedevent but HttpWebRequest we don't have such type of events.
How can show progressbar with percentage in windows phone8.
Thanks in advance.
Reply
Answers (
0
)
How to show progress bar with percentage while uploading WP8
Windows Phone 8.1 textblock doesnt scroll if outside screen.