This
article will show you how you can perform spell check in asp.net without using
jQuery or JavaScript. In this I will user HTML5 spellcheck validation
attribute. So have a look of the code.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SpellCheck.aspx.cs" Inherits="WebApplication1.SpellCheck" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Spellcheck Check
In Textarea Without Using jQuery/JavaScript</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<textarea rows="10" cols="20" spellcheck="true"></textarea>
</div>
</form>
</body>
</html>
|
Please
check the highlighted part of the code. This attribute is used for spell check.
Now we have done. Just run the application to check the output.
0 comments:
Please let me know your view