|
|
|
|
  |
 |
|
Products - QM SpellChecker |
|
|
|
|
|
Download
Please refer Quick Guide for detailed description
of implementation.
Steps for quick integration.
- Unzip QM SpellChecker folder, it contains following files.
- QMSpellChecker.dll
- words-english.txt
- words.txt
- SpellChecker.lic
- Add QMSpellChecker.dll in your ToolBox (Quick
Guide).
- Add all txt files and SpellChecker.lic file in your application folder.
- Drag and drop QMSpellChecker control from your toolbox.
- Add following two properties to Spell Checker Control:
- SpellCheckerControlID: ID of TextBox.
- TargetControlId: ID of Button which is responsible for popup the control.
Sample code
<%@ Page
Language="C#" AutoEventWireup="true"
CodeFile="Sample.aspx.cs" Inherits="Sample" %>
<%@Register Assembly="QMSpellChecker"
Namespace="QMSpellChecker"
TagPrefix="QM"
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML
1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head
runat="server">
<title>QMSpell Check
Sample</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:TextBox ID="TextBox1" runat="server" Height="300px"
TextMode="MultiLine" Width="400px"></asp:TextBox>
<asp:Button ID="Button1" Text="Button1" runat="server" ></asp:Button>
<QM:SpellChecker ID="SpellCheck1" runat="server"
SpellCheckerControlID="TextBox1" TargetControlId="Button1"> </QM:SpellChecker>
</ContentTemplate>
</UpdatePanel>
</div>
</form>
</body>
</html>
|
|
|
|
 |
 |
 |
|
|
|
|
|
|
|