Visualizzazione post con etichetta c#. Mostra tutti i post
Visualizzazione post con etichetta c#. Mostra tutti i post

martedì 22 luglio 2008

RssC 1.60

In this version I add some new items: Pubblication Date and Category.
Download
Code
Release Notes

lunedì 21 luglio 2008

RssC 1.50

New version of RssC.The XML reader method now is more fast and secure.
Download
Code
Release Notes

RssC 1.30

In this new version, you can read more feed without restart the application.
Download
Code
Release Notes

mercoledì 2 luglio 2008

ASCIIView 1.0 on Softpedia

My program AsciiView 1.0, now is on Softpedia.
This is the link.

giovedì 19 giugno 2008

Download a file in C#

Do you want to download a file? This file is situated in Internet and you don't know how to do? .NET Framework helps you.

We make an example: the file that we want to download is: http://www.google.it/intl/it_it/images/logo.gif. This is an image, the Google's logo.

The code is this:

WebClient() client = new WebClient();

client.DownloadFile(@" http://www.google.it/intl/it_it/images/logo.gif", @"C:\logo.gif");

WebClient is a class situated in System.Net. The first parameter is the file's position. The second is the filename, where it saves the file on our hard disk.

It is very easy, no?