It is a technology for building Powerful and Dynamic application.
It is a Part of .Net Framework.
Basic HTML and CSS Knowledge is preferable.
.NET language is a Independent which means you can use any .Net supported language to make a .Net applications.
What is mean by VWD?
Visual Web Developer
Validation in ASP.Net
Now a days, Validation is a important in the Window application and Web Application.In web application ,validation is a separate control.
Types of Validation:
1)RequiredFieldVaildator
It is a very useful and very easy.You can use it in the Textbox validation .
Use Uncomment a line : Select a line and Press Ctrl+u,Ctrl+c
2) Comparevalidator: -- It is useful for somecase.It is very useful to compare a two values of two controls
type: currency,Date,Integer,Double,String
try to change the Operator and type based on your scenario
3)RangeValidator:
It is very useful for Date range Specification that user enter within minimumvalue and maximum value.
It is a Part of .Net Framework.
Basic HTML and CSS Knowledge is preferable.
.NET language is a Independent which means you can use any .Net supported language to make a .Net applications.
What is mean by VWD?
Visual Web Developer
Validation in ASP.Net
Now a days, Validation is a important in the Window application and Web Application.In web application ,validation is a separate control.
Types of Validation:
1)RequiredFieldVaildator
It is a very useful and very easy.You can use it in the Textbox validation .
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%--This is aTitle Part--%>
Testing Required Validator
Note:
Use Comment a line : Select a line and Press Ctrl+k,Ctrl+c
<%--This is a Controls declartation--%>
Use Uncomment a line : Select a line and Press Ctrl+u,Ctrl+c
2) Comparevalidator: -- It is useful for somecase.It is very useful to compare a two values of two controls
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%--This is aTitle Part--%>
Testing Required Validator
Operator: Lessthan,LessthanEqual,Greater,Greaterthan,Equal,NotEqual,DataTypeCheck. type: currency,Date,Integer,Double,String
try to change the Operator and type based on your scenario
3)RangeValidator:
It is very useful for Date range Specification that user enter within minimumvalue and maximum value.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%--This is aTitle Part--%>
Testing Required Validator