0

created a schema having a field name 'email'. Now i need to verify field is it valid ? if not i want to show a error message. i edit the source as follows :

<xsd:element name="email" minOccurs="0" maxOccurs="50">
<xsd:simpleType>
<xsd:restriction base="xsd:normalizedString">
<xsd:pattern value="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>

how can i show a error message? or any other better approach please suggest.

AmateurCoder
  • 4,272
  • 3
  • 17
  • 31

1 Answers1

4

Take a look at some of these links, they should get you on the right track:

Cheers

Community
  • 1
  • 1
Neil
  • 2,688
  • 1
  • 23
  • 32