Hello
I am trying to get the SPELL CHECK button to fire, when submitting my ASP page. Our users are too stupid to click the SPELL CHECK button already provided with the new versions of CuteSoft editor.
Here is some of my code:
Private Sub Editor1_PostBackCommand(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.CommandEventArgs) Handles Editor1.PostBackCommand
If (String.Compare(e.CommandName, "netspell", True) = 0) Then
lblException.Text = "You just clicked the NET SPELL Button"
Else
lblException.Text = "You did NOT just click the NET SPELL Button"
End If
End Sub
This code doesnt work for me at all. I cant figure out why, but is there a good example on how to FORCE the NETSPELL button click, from VB/ASP.NET?
Thanks for any help!!
HOMECITY