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