C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Bill Farley(2)
Shantanu (2)
Mike Gold(2)
Alan Le Senechal(1)
Jignesh Trivedi(1)
Vatsal Shah(1)
Jigar Desai(1)
Pramod Singh(1)
Resources
No resource found
HTTP response using the GetResponseHeader () class HttpWebResponse
Jun 05, 2011.
The ContentLength property of the HttpWebResponse class can be used when we want to get the size of an HTTP response, the number of bytes contained in the response.
Calling Web API Using HttpClient
Jun 25, 2016.
C# HttpClient. In this article, you will learn how to call Web API using HttpClient in ASP.NET. HttpClient class provides a base class for sending/receiving the HTTP requests/responses from a URL. It is a supported async feature of .NET framework. HttpClient is able to process multiple concurrent requests. It is a layer over HttpWebRequest and HttpWebResponse. All methods with HttpClient are asynchronous.
Scraping Web site Dynamic Data using WATIN
Mar 30, 2013.
Learn how to scrape web pages using Watin and NUnit in C# ASP.NET. Explore techniques for efficient scraping, including navigation, HTML parsing with regular expressions, and utilizing third-party tools. Deploy and configure web applications, navigate pages, and extract data with ease.
Simple web File download in VB.NET
Nov 10, 2012.
This is a simple program that shows how to download files from the web and save them.
Invoking a Web Service dynamically using System.Net and SOAP
Mar 07, 2011.
This article explains how to invoke the web service dynamically.
Screen Scraping using System.Net
Jan 17, 2011.
Screen Scraping is used to extract data from a web page by scraping it instead of more direct access. It involves requesting the page and then parsing the response. It is useful in situations where direct access to the data is not there.
Implementing the HTTP Request/Response Model inside of Silverlight
Jul 26, 2010.
In this article we will see how to implement the http Request/Response Model inside of Silverlight.
Posting Form Data from ASP.NET Page to Another URL
Sep 27, 2004.
This article shows you how to post a Form data to a different URL from ASP.NET pages. For example, you might need to send user to a third party payment processing system using post method. ASP.NET does not provide any straight forward way to accomplish this task.
Tracking your lottery pick on the Web Using .NET
Apr 29, 2002.
A few weeks ago, the New Jersey State lottery was up to 300,000,000 dollars.
Simple Web File Download
Mar 23, 2001.
This is a simple program that shows how to download files from the web and save them. The program uses the HttpWebRequest and HttpWebResponse classes to request and retrieve the requested file.
FileDownloader : Download files using HTTP
Jan 10, 2000.
This application contains a Form and a Class module . From Form we create a thread which execute the procedure to handle the NET download. This application can be enhance to do more down load as in Download manager by creating more threads.