Online Documentation
- Introducing ASPSpellCheck
- Introduction to ASPSpellCheck
- What's New
- Getting Started
- Installation and Settings
- Installation Process
- Compatibility
- Installing Dictionaries
- Your Custom Dictionary
- Enforcing Spelling Corrections
- The Settings File
- Usage
- Basics
- ASPSpellLink Class
- Properties
- caseSensitive
- checkGrammar
- dictionary
- dialogLanguage
- doneMessage
- externalCSS
- fields
- hideSummary
- ignoreAllCaps
- ignoreNumbers
- ignoreWebAddresses
- javaScriptCallback
- newSentanceOnEachNewLine
- useSession
- ASPSpellPath
- Methods
- buttonHTML
- buttonXHTML
- imageButtonHTML
- imageButtonXHTML
- linkHTML
- spellingCheck
- spellingSuggestions
- url
- Notes for Advanced Developers
- ASP.Net Compatibility
- Caching
- Examples
- Basic SpellCheck
- Server Side Spellchecking
- Language Variants
- Submitting a Form
- Rich Editors
- Licenses & Registration
- Free Trial
- Registering
- License Agreement
ASPSpellLink.url()
The method returns a url which will call open the spellchecker the the settings as set by your choices in the ASPSpellLink class.
This is useful for custom spellchecking applications such as run-time dictionary selection .
Note: when opening a dialog window using this url we suggest minimum dimensions of 460x290 pixels, with no scrollbars.
ASP VBScript Source Code:
<!--#include virtual="/ASPSpellCheck/ASPSpellInclude.inc"-->
<textarea id= "MyTextArea" name="MyTextArea" cols="30" rows="10" >
Hello World.
</textarea >
<%
dim myLink
set myLink = new AspSpellLink
myLink.fields="MyTextArea"
response.write myLink.url()
set myLink=nothing
%>
Outcome: /ASPSpellCheck/ASPSpellCheck.asp?fields=MyTextArea
