ASP.Net
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.
How browsers understand ASP.NET web pages?
5There 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.
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;
