Featured Articles

SurfingSuccess Articles

We have chosen the best articles written by our partners from SurfingSuccess and you can find them below: https://wshop.fi/eng/jquery-document-ready-explained-document-ready-function/ https://wshop.fi/eng/javascript-browser-detection-navigator-user-agent-sniffing-guide/ https://wshop.fi/eng/asp-asp-net-forms-authentication-login-control-with-sql-server-using-aspnetdb-mdf/ https://wshop.fi/eng/jquery-append-insert-using-append-prepend-before-after/ https://wshop.fi/eng/jquery-window-width/ https://wshop.fi/eng/css-wildcard-kind-of-css-attribute-selector/ How to set the default view in visual studio to either, Design, Source, or Split View https://wshop.fi/eng/iis-url-rewrite-installation-and-use-web-config/ https://wshop.fi/eng/css-clearfix-how-to-clear-floats/ “Sometimes” Sticky CSS Element Using jQuery https://wshop.fi/eng/css-sticky-footer/ https://wshop.fi/eng/images-in-html-emails-still-separate-in-gmail/ https://wshop.fi/eng/protocol-relative-url-network-path-reference-or-scheme-relative-url/ https://wshop.fi/eng/javascript-window-location-object-methods/ https://wshop.fi/eng/make-rss-icon-display-in-browser/ https://wshop.fi/eng/basic-jquery-ui-accordion-tutorial/ https://wshop.fi/eng/responsive-jquery-vertical-menu/ https://wshop.fi/eng/net-vb-c-control-naming-conventions/ https://wshop.fi/eng/css-centering-of-an-element/ https://wshop.fi/eng/doctype-reference-html-and-xhtml/ https://wshop.fi/eng/my-favorite-css-generators/ https://wshop.fi/eng/seo-safe-css-hiding/ https://wshop.fi/eng/remove-dotted-line-around-link/ https://wshop.fi/eng/php-ispostback-equivalent-function-code-snippet/

jQuery Append – Insert Using .append() .prepend() .before() .after()

This tutorial will show how to use jQuery append.  It will also show how to append after and append before.  Append actually means to add after. But this will  show you how to use jQuery to insert content with these four functions. BeforeAfterInside.prepend().append()Outside.before().after() .before() - Inserts content outside and before. .prepend() - Inserts...

ASP.NET WatchDog System Requirements. Installation Instructiuons

In order to run ASPNETWatchDog, your system must have Microsoft .NET Framework installed. For more information about Microsoft .NET Framework, please visit MSDN .NET web site on http://msdn.microsoft.com/net/ . This release (V1.0.793) of ASPNETWatchDog has been tested on .NET Framework version 1...

Real Coders Coding SystemThreadingTimer Stops Firing in Windows Server 2003 SP1

Do you have an application that starts misbehaving randomly? You aren't quite sure what is going on, but it seems like for some reason your Timer just stops firing it's event handler--and once it stops it never starts back up. This drove...

Javascript Browser Detection – Navigator User Agent Sniffing Guide

Javascript browser detection can be useful. This is called user agent sniffing.  jQuery had the function “.browser” which would detect the users browser, but it was removed in jQuery version 1.9. They now recommend “.support” for browser feature detection. *using navigator.userAgent can...

ASP.NET Cache Advanced Usage

Many of the people who did the program performance optimization, or concerned about the process of program performance, should have used all kinds of caching technology. I said today Cache refers specifically to the ASP.NET Cache we can use HttpRuntime.Cache to...

How to Remove Dotted Line Around Link? Remove Mozilla Firefox Border

Ever noticed that FireFox applies a border/outline around links. This CSS snippet will remove dotted line around link. If this is what you are trying to accomplish, try using the below css snippet: remove dotted line around linkremove dotted borderremove firefox borderremove css...

How to set the default view in visual studio to either, Design, Source, or Split View

In Visual Studio, to change the Default View from Design View to Source View, or Split view, do the following. In the menu, go to “Tools” > “Options.” Once in options, select the “HTML Designer” Section. Next, select your default view of choice, Design View, Source View, or Split view. Click “OK.” Then restart Visual Studio. Split View - Horizontal or...

The Capabilities of .NET

The Developers Dilemma usually takes two forms: If Only I could XOr, How Do I X Usually followed by a flurry of Google Searches and, depending on the...

SEO Safe CSS Hiding: CSS Snippet

As far as I know, this is better for SEO when hiding an element with CSS. I believe it is better than display: none; and/or visibility:...

Make RSS Icon Display in Browser With this HTML Snippet

This will show how to make RSS icon display in browsers with RSS feed integration. Most CMSs will automatically add the code needed for an RSS feed to be displayed...

Discover

Trending

Make RSS Icon Display in Browser With this HTML Snippet

This will show how to make RSS icon display in browsers with RSS feed integration. Most CMSs will automatically add the code needed for an RSS feed to...

jQuery UI Accordion Tutorial: How to Make a Basic jQuery UI Accordion

This post is for beginners.  It shows how to make a basic jquery UI accordion. We will use a predefined jquery ui for the accordion. There is...

Coding With Unity State Machine Using Inheritance

In this post I want to show you how I like to go about creating a state machine. A state machine is usually used...

CSS Sticky Footer – Sticks Whether You’ve Scrolled or Not

There are several tutorials on how to make a CSS sticky footers sticky header, or sticky sidebar.  This is one. Remember to compensate at the bottom of...

jQuery Window Width – Determine Browser Window Size, Responsive Design

jquery window width, you’ll need it if you’re working with Responsive Design and/or need to figure out the width of the browser Window? Are you using a responsive...

Enjoying our content?

Subscribe and receive a weekly newsletter packed with awesome stories to inspire you!

Latest Articles

Website Design Errors to Avoid Before a Website Launch

A client can choose from only 5 to 10 seconds that whether they will get what they need from your site or not. On the off chance that you are considering propelling a site at...

The Capabilities of .NET

The Developers Dilemma usually takes two forms: If Only I could XOr, How Do I X Usually followed by a flurry of Google Searches and, depending on the platform/language you are programming in, either success or failure. Often...

Real Coders Coding SystemThreadingTimer Stops Firing in Windows Server 2003 SP1

Do you have an application that starts misbehaving randomly? You aren't quite sure what is going on, but it seems like for some reason your Timer just stops firing it's event handler--and once it stops...

Create and Consume Web Services In Asp.Net

In this Article we will learn how to create and consume Web Services In Asp.Net and C#. A Web Service is platform independent software component, based on Simple Object Access Protocol (SOAP) . Web Service is used...

Coding With Unity State Machine Using Inheritance

In this post I want to show you how I like to go about creating a state machine. A state machine is usually used (or at least, I use it) for things like the game...

Application Design Inside ASP.NET

In general, this means evaluating the design for performance, maintainability, extensibility, scalability, availability, recovery, data integrity, and use-case correctness. Performance Evaluation Typically, designing a Web application into three logical tiers is sufficient. Creating additional logical tiers is...

How to Remove Dotted Line Around Link? Remove Mozilla Firefox Border

Ever noticed that FireFox applies a border/outline around links. This CSS snippet will remove dotted line around link. If this is what you are trying to accomplish, try using the below css snippet: remove dotted line around...

Javascript Window Location Object Methods

Two of the three javascript window location object methods seem to do the same thing.  They do not. The window location methods are assign(), reload(), and replace(). The reload() method does what you think. Both assign() and replace() appear to simply...

PHP Ispostback Equivalent Function – Code Snippet

There is a function called ispostback in asp.net. However there isn’t one in PHP. You use do it to check if a page is a postback. The snippet of code below will create a PHP...

Sponsor

Stars

Doctype Reference – HTML and XHTML

Here are the doctype declarations for you. Short and sweet HTML Doctypes: HTML 5 Doctype <!DOCTYPE html> HTML 4.01 Strict Doctype <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> XHTML Doctypes: XHTML 1.1...

Ultimate Cheat sheet for C++ Programming Language

C++ isn’t a simple programming dialect to ace. Just through experience will the horde mixes of images begin to appear to be normal to...

PHP Ispostback Equivalent Function – Code Snippet

There is a function called ispostback in asp.net. However there isn’t one in PHP. You use do it to check if a page is...

The Capabilities of .NET

The Developers Dilemma usually takes two forms: If Only I could XOr, How Do I X Usually followed by a flurry of Google Searches and, depending...

jQuery Window Width – Determine Browser Window Size, Responsive Design

jquery window width, you’ll need it if you’re working with Responsive Design and/or need to figure out the width of the browser Window? Are you using a responsive...