Click here to Skip to main content
15,886,137 members
Everything / Browser

Browser

browser

Great Reads

by V. Subhash
Use policies.json file to force Firefox to respect your preferences.
by Harry Truman
Screencasting (demo screen, screensharing) already works in Google Chrome. The technology allows capturing a window of the browser itself as well as windows of other applicaitons. For example, you can capture Firefox running in a separate window.
by Joe Rattz
The purpose of this article is to explain how you can update your ASP.NET 2.0 site to properly recognize and identify Chrome.
by Andy South
We have established a goal to decide, what solution (as in a combination of software and services) among those we chose allows extending the audience of an event with minimum efforts.

Latest Articles

by ToughDev
How to play the classic MS-DOS game - Alley Cat - from your browser
by V. Subhash
Use policies.json file to force Firefox to respect your preferences.
by Amarnath S
Phonetic Typing in Some Indian Languages
by HenkAlles
Show Simple Log - see the article by Jochen Scharr - in the browser with a nice layout

All Articles

Sort by Score

Browser 

29 Mar 2023 by V. Subhash
Use policies.json file to force Firefox to respect your preferences.
21 Feb 2021 by HenkAlles
Show Simple Log - see the article by Jochen Scharr - in the browser with a nice layout
12 May 2011 by DrABELL
Hi,As FYI: You could refer to my article published on CodeProject, which describes the similar solution and has been tested to work with all major browsers: How to Detect Browser Capabilities in ASP.NET[^]Kind regards,Alex B.
15 Aug 2011 by Caner Korkmaz
How to open the Internet browser from code.
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...
16 Feb 2017 by RedDk
The solution to annoying garish webpages; say good-bye to all that irritating light while browsing the internet. Keep it dark ... learn how here.
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",...
10 Feb 2012 by clbyrne
I did something similar with a PageToken class, but I put it in the Master Page so that I could implement it on any page that uses the Master Page. In our code we wrapped the session variables in their own class called Session variables.We needed a little more functionality for complex pages...
18 Apr 2013 by Stephen Hewison
Problems with the ASP.Net engine caused by the increase of tablet browsers, IE10 and user agents.
9 Feb 2015 by Samarjeet Singh
Creating jquery plugins have never been easier !
12 May 2011 by Talking Dotnet
Hi,I have copied your code and pasted in HTML file. But it is not working. However, I found 2 links which tells how to detect...
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 =...
1 Oct 2013 by IPI Paul
Use this script to create Bookmarks that enable quick Login to your favourite sites.
10 Sep 2015 by Swagat Swain
Get the maximum out of Chrome's Developer Console
2 Feb 2015 by Michael Collins - Intervalia
Use the code below to determine the number of bindings of your Angular apps
28 Aug 2014 by Aaron L. Hall
Here is a tip for making sure that debugging your MVC website does not cause Visual Studio to crash when using IIS7 to host the site in your development environment: Don't use more than one worker. process in your Application pool.
5 Feb 2012 by Udi Perets
Simple Web User Control prevents unexpected action caused by Refresh Button
1 May 2013 by Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)
This tip will help you to communicate with a cross domain Iframe which is added in the form.
21 May 2014 by Coding 101
A simple Registry change will enable IE to display JSON responses.
2 Sep 2016 by Robin Rodricks
Learn how to integrate the CefSharp open-source web browser into a C# WinForms app
23 Jul 2020 by Sandeep Mewara
How to make any browser a basic html editor.
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);
16 Mar 2015 by Pankil Bhatt
In this tip, we will see how to use the Google Maps API and Google Maps with custom styles and a custom pin.
11 Nov 2014 by binit.ku.singh
How to disable page caching in Firefox
18 Jul 2014 by essence
You would have thought they'd have fixed this by now. I wanted to be sure, and here's the test.
16 Apr 2015 by JFMDev
Presenting TuringFonts, a way to make uncrawable and uncopiable texts
27 Mar 2013 by metastruct
When WebClient, HttpRequest, and all else fail, BITSadmin solves your download woes
7 Feb 2012 by Member 4236865
Could you not achieve the same thing with javascript?if (document.all){ document.onkeydown = function () { var key_f5 = 116; if (key_f5==event.keyCode){ event.keyCode=0; alert ("Sorry! You can not refresh this page!"); ...
28 Feb 2011 by Peace ON
Following is a one line solution when it is written within Session_End() method of Global.asax file.Session.Abandon()HTH
26 Feb 2011 by rajivpande86
When the browser window is closed, how does server react to the Session which was being active?