Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / programming / Internet

Internet

Internet

Great Reads

by Prilvesh K
Getting started with Spark Core,setup a guide for everyone new.
by Michael Haephrati
A C++ client for uploading documents to your Google Docs account
by Not Active
Microsoft's Bing has some amazing images as backgrounds. With this code you can create a Windows Service or any other type of application to automate the image download process, then set the Windows Desktop backgrounds to use the designated folder.
by metastruct
When WebClient, HttpRequest, and all else fail, BITSadmin solves your download woes

Latest Articles

by Prilvesh K
Getting started with Spark Core,setup a guide for everyone new.
by Michael Haephrati
A C++ client for uploading documents to your Google Docs account
by Not Active
Microsoft's Bing has some amazing images as backgrounds. With this code you can create a Windows Service or any other type of application to automate the image download process, then set the Windows Desktop backgrounds to use the designated folder.
by metastruct
When WebClient, HttpRequest, and all else fail, BITSadmin solves your download woes

All Articles

Sort by Score

Internet 

by metastruct
When WebClient, HttpRequest, and all else fail, BITSadmin solves your download woes
by hemanthk119
Securing local networks with wireguard connected OpenWRT routers. Prevents RF data leakage and spies from reading internet traffic.
by Thomas Daniels
A tip about how to create a local server in C#.
by Jinan Kordab
This tip describes the benefits of discarding a computer box to increase efficiency at home and at work
by Sergio Andrés Gutiérrez Rojas
Easy FTP Upload without files size limit
by ASP.NET Community
How to copy the text of a textbox to clipboard using JavaScript.
by Teraten
On Windows, a BAT file can run a powershell script to report your wi-fi strength percentage and internet speed.
by Caner Korkmaz
How to open the Internet browser from code.
by kbo-mvs
I use this one in C++ (has the advantage that you can use your preferred browser ;-):ShellExecute (NULL, NULL, _T("http://www.codeproject.com"), NULL, NULL, SW_SHOWNORMAL);
by Kevin Marois
You're incorrect. Explorer is Windows Explorer, not Internet Explorer. Try this:System.Diagnostics.Process.Start("explorer");then this:System.Diagnostics.Process.Start("iexplore.exe", "http://www.codeproject.com");and this:System.Diagnostics.Process.Start("winword.exe",...
by Michael B. Hansen
If I remember correctly, then I had some issues with the above method some years ago. It would not always work on some systems.I personally use the following method to get the EXE path to the system's default browser:public static string GetDefaultBrowser(){ string browser =...
by thatraja
Given below is code for opening the Internet browser programmatically in VB 6 and VB.NET.VB 6Private Declare Function ShellExecute Lib "shell32.dll" Alias _ "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, _ ByVal lpFile As String, ByVal lpParameters As...
by Oliver Bleckmann
Simple but efficient way of logging errors over the internet using a PHP webservice/ REST and mail notification. Logging C#/ .NET errors over the web and with PHP and sending notification mail.
by Marcus Müller
A PowerShell function for testing Internet connectivity using the Network Connectivity Status Indicator (NCSI) mechanism
by Ozcan ILIKHAN
Some of the functions of our applications may require a run-time test of internet connectivity. Once internet connectivity is detected, the functions that require internet access may temporarily be disabled and/or the user can be notified via an alert message.