Solution:
<html>
<body>
<center><br><br>
<form action="slip7.jsp" method="GET"><b>
Enter The email-ID :</b>
<input type=text name=email><br><br>
<input type=submit value="SUBMIT">
</form>
</center>
</body>
</html>
Slip7.jsp
<html>
<body>
<font color=red>
<%@page language="java"%>
<%! int cnt=0;
char ch;
%>
<%
String email=request.getParameter("email");
out.print(email+"");
for(int i=0;i <email.length();i++)
{
ch=email.charAt(i);
if(ch=='@')
{
cnt++;
}
if(ch=='.')
{
cnt++;
}
}
if(cnt==2)
out.println("Valid Email Id ");
else
out.println("InValid Email Id");
%>
</font>
</body>
</html>
0 Comments