Search Result

Collapse
7 results in 0.0028 seconds.
Keywords
Members
Tags
webclient
  •  

  • Using WebClient to download string from ASP.NET Web Service Error

    I have a simple ASP.NET Web Service:

    Code:
    using System;
    using System.Collections.Generic;
    using System.Web;
    using System.Web.Services;
    using System.Web.Script.Services;
    using System.Web.Script.Serialization;
    using System.Web.UI.WebControls;
    using System.Web.UI;
    
    namespace WebService1
    {
        /// <summary>
        /// Summary description for Service1
    ...
    See more | Go to post

  • buynsell
    started a topic HttpWebRequest to login youtube

    HttpWebRequest to login youtube

    After bunch of searching on google I end up with posting new thread for help,

    I am trying to login to youtube using webRequest/Response but no success, it is returning source code which tells that "Your browser cookies disabled ..." etc.

    Attaching my code and can someone tell me the solution or if any better way to do this ?

    I know that youtube api offer these function but I've to do without...
    See more | Go to post

  • liadmz
    started a topic Handling WebClient Async Upload for multiple sites

    Handling WebClient Async Upload for multiple sites

    Hi All,

    I'm trying to create an app that can upload the same file to multiple site at the same time.

    This is my code till now...
    Code:
    private void UploadFile(string _ip, string _file)
    {
    	//Setup the client and Credentials 
    	WebClient wc = new WebClient();
        wc.Credentials = new NetworkCredential("user", "pass");
    
    	//set the Async routines
    ...
    See more | Go to post

  • Alex T
    started a topic How do I use WebClient in C++?
    in C

    How do I use WebClient in C++?

    I want to use WebClient in C++ in order to copy source from a webpage and save it into a text file. How do I do that? I have never used WebClient before.
    See more | Go to post

  • HttpWebRequest / WebClient Authentication Issue

    I am trying to parse a website that requires you to be logged in to access (NOT https). I have logged in via IE and told it to remember my credentials. If I use an invisible webBrowser control it will correctly log in and I can get the html source code from that. The problem is I need to be able to do this X number of times concurrently in BackgroundWorke rs, and it won’t let me create a webBrowser control dynamically in code due to some ActiveX...
    See more | Go to post

  • Cannot detect newline character in string downloaded from the internet.

    The string is coming from this url, http://www.elixirwd.com.au/test.php

    The Username and Password for this url is,
    Username:user
    Password: password

    Now simply downloading the data using the WebClient classes DownloadString( ) method the below code will not work.

    Code:
    If FileContents.Contains(ControlChars.NewLine) Then
                MessageBox.Show("Has newline!")
            End
    ...
    See more | Go to post

  • How can I post a form which contain an array value?

    Hello,

    I am developing an application for windows that is going to upload images to a free image hostings...

    I am using WebClient and UploadData for posting my form to the website... now lets take a look to one of these free image hostings , for example img98.com..

    as you can see in the main form for uploading there are 4 inputs with the name of "userfile[]" that means userfile is an array......
    See more | Go to post
Working...