Posts tagged as:

Web

How to use a Master Page in ASP.NET

by Dave on September 7, 2009

in ASP.NET,Internet

When creating a website you will always have common sections which are repeated on every page throughout your whole site. For example headers and footers, a navigation bar, a side bar, etc. are all sections in your site which do not change depending on which page is being browsed. With a Master Page you only [...]

{ 0 comments }

In this article I am going to show you how to create a secure login screen for your ASP.NET website – the proper way. I have come across many examples which do not show the correct way of implementing this, so I decided to create my own example and clarify the facts a little. The [...]

{ 0 comments }

Create and Read Cookies in ASP.NET

by Dave on August 19, 2009

in ASP.NET

Cookies are small pieces of text which are created by websites and stored by the Internet browser in its cache for later use. Typically a cookie would contain information related to a surfer’s session in a particular website, such as the user name, items in a shopping cart, page layout preferences, etc. When a surfer [...]

{ 1 comment }