ASP.Net

Browser_Back_Button

How to Avoid navigation from BACK button on the browser

1

This is a basic issue for any web developer. After sign out when the user press BACK button on the browser, it gets him to the members page. Logically, it’s done on the client side and we cannot do much from the code-behind. So, in order to prevent Browser BACK button click after Sign-out, we have to use some JavaScript. We will see in this post.

 

 

(more…)

reg_exp

Regular Expressions in ASP.NET

2

Today we sill see the the “Regular Expressions” in ASP.net. Some people are using this in day to day applications. A regular expression is written in a formal language that can be interpreted by a regular expression processor. A regular expression, often called a pattern, is an expression that describes a set of strings.

(more…)

How browsers understand ASP.NET web pages?

5

There are several several technologies exist to develop dynamic web sites and pages. Some of them are ASP, ASP.NET, PHP etc.

Whatever technology you use to develop the dynamic web pages, a standard browser should be able to display the page to the visitors.

(more…)

Email

A simple Mail Send function from ASP.Net

3

Many times your ASP.Net website contains a Contact form or an  E-mail functionality then you need to write a code to send E-mail. Following code will help you in this.

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Net.Mail;

using System.Windows.Forms;

(more…)

Go to Top