Click here to Skip to main content
15,867,686 members
Everything / General Programming / Internet

Internet

Internet

Great Reads

by Thomas Daniels
A tip about how to create a local server in C#.
by Richard Eng
A tip for creating a web application using the easiest programming language and framework you can imagine
by ASP.NET Community
How to copy the text of a textbox to clipboard using JavaScript.
by tonywilk
Example server and client using different protocols over a Websocket (php/js)

Latest Articles

by hemanthk119
Steps to enable VPN client on an OpenWRT router using openvpn and mwan3
by hemanthk119
Scripts for a truly randomized and kill switch enabled VPN router
by Matt Pogue
I was reading a great article recently about subdomain enumeration services and it got me thinking about Let's Encrypt and internal domains.
by Artem Moroz
Using ESP8266 module to remotely control high power electrical appliances

All Articles

Sort by Updated

Internet 

11 Oct 2016 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.
13 Feb 2016 by Marcus Müller
A PowerShell function for testing Internet connectivity using the Network Connectivity Status Indicator (NCSI) mechanism
30 Oct 2014 by Jinan Kordab
This tip describes the benefits of discarding a computer box to increase efficiency at home and at work
11 Oct 2013 by ASP.NET Community
 How to copy the text of a textbox to clipboard using JavaScript.
27 Mar 2013 by metastruct
When WebClient, HttpRequest, and all else fail, BITSadmin solves your download woes
28 Oct 2012 by Thomas Daniels
A tip about how to create a local server in C#.
18 Oct 2011 by Sergio Andrés Gutiérrez Rojas
Easy FTP Upload without files size limit
18 Aug 2011 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...
17 Aug 2011 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 =...
15 Aug 2011 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);
15 Aug 2011 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",...
15 Aug 2011 by Caner Korkmaz
How to open the Internet browser from code.
19 Jan 2011 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.