Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 596773
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T16:12:29+00:00 2026-05-13T16:12:29+00:00

I am working on a mobile application on .net. This is a windows mobile

  • 0

I am working on a mobile application on .net. This is a windows mobile application. I am facing a problem in this application that I wanna upload an image/file to given url/server. Many upload classes is not using like Webclient, WebRequest, WebResponse. I used HttpWebRequest, That is not connecting with server. Please anyone can help me on how to upload the images on given url in windows mobile 6 in .net.

Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T16:12:30+00:00Added an answer on May 13, 2026 at 4:12 pm

    Hey take a look at this code for uploading at Image Shack:

    You can modify it to use with other web site by just using Fiddler to change the web requests

    public class Uploader
        {
    
            public string UploadFileToImageShack(object oFileName)
            {
                try
                {
                    string fileName = oFileName as string;
                    string contentType = null;
                    CookieContainer cookie = new CookieContainer();
                    NameValueCollection col = new NameValueCollection();
                    col["MAX_FILE_SIZE"] = "3145728";
                    col["refer"] = "";
                    col["brand"] = "";
                    col["optimage"] = "1";
                    col["rembar"] = "1";
                    col["submit"] = "host it!";
                    List<string> l = new List<string>();
                    switch (fileName.Substring(fileName.Length - 3, 3))
                    {
                        case "jpg":
                            contentType = "image/jpeg";
                            break;
                        case "peg":
                            contentType = "image/jpeg";
                            break;
                        case "gif":
                            contentType = "image/gif";
                            break;
                        case "png":
                            contentType = "image/png";
                            break;
                        case "bmp":
                            contentType = "image/bmp";
                            break;
                        case "tif":
                            contentType = "image/tiff";
                            break;
                        case "iff":
                            contentType = "image/tiff";
                            break;
                        default:
                            contentType = "image/unknown";
                            break;
                    }
    
                    string resp;
                    col["optsize"] = "resample";
                    resp = UploadFileEx(fileName,
                                                   "http://www.imageshack.us/index.php",
                                                   "fileupload",
                                                   contentType,
                                                   col,
                                                   cookie);
                    return resp;
    
    
                }
                catch (Exception ex)
                {
                    return "";
                }
            }
    
    
    
            public static string UploadFileEx(string uploadfile, string url,
               string fileFormName, string contenttype, System.Collections.Specialized.NameValueCollection querystring,
               CookieContainer cookies)
            {
                if ((fileFormName == null) ||
                    (fileFormName.Length == 0))
                {
                    fileFormName = "file";
                }
    
                if ((contenttype == null) ||
                    (contenttype.Length == 0))
                {
                    contenttype = "application/octet-stream";
                }
    
    
                string postdata;
                postdata = "?";
                if (querystring != null)
                {
                    foreach (string key in querystring.Keys)
                    {
                        postdata += key + "=" + querystring.Get(key) + "&";
                    }
                }
                Uri uri = new Uri(url + postdata);
    
    
                string boundary = "----------" + DateTime.Now.Ticks.ToString("x");
                HttpWebRequest webrequest = (HttpWebRequest)WebRequest.Create(uri);
                webrequest.CookieContainer = cookies;
                webrequest.ContentType = "multipart/form-data; boundary=" + boundary;
                webrequest.Method = "POST";
    
    
                // Build up the post message header
                StringBuilder sb = new StringBuilder();
                sb.Append("--");
                sb.Append(boundary);
                sb.Append("\r\n");
                sb.Append("Content-Disposition: form-data; name=\"");
                sb.Append(fileFormName);
                sb.Append("\"; filename=\"");
                sb.Append(Path.GetFileName(uploadfile));
                sb.Append("\"");
                sb.Append("\r\n");
                sb.Append("Content-Type: ");
                sb.Append(contenttype);
                sb.Append("\r\n");
                sb.Append("\r\n");
    
                string postHeader = sb.ToString();
                byte[] postHeaderBytes = Encoding.UTF8.GetBytes(postHeader);
    
                // Build the trailing boundary string as a byte array
                // ensuring the boundary appears on a line by itself
                byte[] boundaryBytes =
                       Encoding.ASCII.GetBytes("\r\n--" + boundary + "\r\n");
    
                FileStream fileStream = new FileStream(uploadfile,
                                            FileMode.Open, FileAccess.Read);
                long length = postHeaderBytes.Length + fileStream.Length +
                                                       boundaryBytes.Length;
                webrequest.ContentLength = length;
    
                Stream requestStream = webrequest.GetRequestStream();
    
                // Write out our post header
                requestStream.Write(postHeaderBytes, 0, postHeaderBytes.Length);
    
                // Write out the file contents
                byte[] buffer = new Byte[checked((uint)Math.Min(4096,
                                         (int)fileStream.Length))];
                int bytesRead = 0;
                while ((bytesRead = fileStream.Read(buffer, 0, buffer.Length)) != 0)
                    requestStream.Write(buffer, 0, bytesRead);
    
                // Write out the trailing boundary
                requestStream.Write(boundaryBytes, 0, boundaryBytes.Length);
                WebResponse responce = webrequest.GetResponse();
                Stream s = responce.GetResponseStream();
                StreamReader sr = new StreamReader(s);
    
                return sr.ReadToEnd();
            } 
    
    
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on a mobile application in .NET. This is a windows mobile
I want to create a .NET CF application for Windows Mobile 5. In this
I'm working on an application that runs on Windows Mobile 6 that needs to
I've got a .NET CF (C#) mobile application that I run on a windows
I'm working on a mobile application (C#/WPF on a tablet PC) that prints to
We are working on a Windows Mobile 6.5 application in Visual Studio 2008. The
I'm working on an order entry application targeted to windows mobile devices. I need
I am working on a commercial web application that has a separate mobile browser
So I'm working on a mobile platform application that I'd like to have users
I am working on a mobile application that uses the jquery UI select menu

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.