Resources  
  • Consume REST Service Using HttpWebRequest and WebClient in Windows Phone 8 & 8.1May 19, 2015. In this article, we will see how to consume REST services in Windows Phone 8 and 8.1. Before that we will introduce REST services.
  • Consume Web API By MVC In .NET Core (3), HttpWebRequestJun 27, 2022. Discuss Consume Web API By MVC In .NET, Client
  • Using WebProxy in C# to Access Internet in Restricted NetworksOct 24, 2025. Learn how to implement a WebProxy in C# to bypass network restrictions and access the internet in corporate environments. This guide provides a reusable method for creating and configuring a proxy, handling authentication, and ensuring secure communication. Discover how to enable/disable the proxy via web.config, manage credentials, and set it as the default for all web requests, making your C# applications enterprise-ready and robust in restricted networks. Essential for API interactions and data fetching behind firewalls.
  • Consume Web API By MVC In .NET Core (4), .NET ClientsJul 04, 2022. In this article, you will learn how to consume Web API By MVC In .NET Core (4), .NET Clients.
  • Calling Web API Using HttpClientJun 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 WATINMar 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.NETNov 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 SOAPMar 07, 2011. This article explains how to invoke the web service dynamically.
  • Screen Scraping using System.NetJan 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 SilverlightJul 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 URLSep 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.
  • User Registration with PayPalJun 28, 2004. This article summarizes how to perform a user registration process which requires payment and how to integrate that with PayPal. This sort of process would exist on a web form where you want to charge for registration.
  • Reading and Display Source of Web PagesDec 30, 2003. This sample project is made to help ASP.NET developers. This projects highlights how to add HTML page inside your ASP.NET page which is hosted on same or different webserver. This page can still run on that server and only output is included in the ASP.NET page.
  • Tracking your lottery pick on the Web Using .NETApr 29, 2002. A few weeks ago, the New Jersey State lottery was up to 300,000,000 dollars.
  • Doppler RadarSep 14, 2001. This is an app that will display the current doppler radar picture for any given zip code.
  • Simple Web File DownloadMar 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.