For name and password I implemented in javascript
<script language="javascript" type="text/javascript">
function ValidateForm() {
var name = document.getElementById("TextBox1").value;
var pwd = document.getElementById("TextBox2").value;
var email=document.getelementById("TextBox3").value;
if (name == "" && pwd == "") {
alert("Username and Password are Necessory!, Please enter and try again.");
}
I want to check valid email id.
Regards
Sridhar Thota.
www.dotnet-sridhar.blogspot.com