Senthil Panneer Selvam Kumar

Greenhorn
+ Follow
since Mar 28, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Senthil Panneer Selvam Kumar

I am new to struts. Please clarify the struts framework from the MVC architecture point of view.
Core application modules/Data Storage - Model
Action classes/Event handlers -- Controller
JSP forms/pages – View
How about the XML description files?
20 years ago
Hi,
You can do it on XSD.
Decimal data validation,
<simpleType name='Comp_Pr'>
<restriction base='decimal'>
<fractionDigits value='1'/>
<minInclusive value='1.0'/>
<maxInclusive value='100.0'/>
</restriction>
</simpleType
For the date validation, you can use the following rules.
pattern
enumeration
whiteSpace
maxInclusive
maxExclusive
minInclusive
minExclusive
String Length:
<simpleType name='input_string'>
<restriction base='string'>
<maxLength value='50'/>
</restriction>
</simpleType>
Hope this might help you.
20 years ago