Send message for .NET app from javascript?
I am working on a help system in HTML and I would like to have links that the user can click to execute commands within a .NET application (for example, to complete steps in a tutorial or workflow). I looked at the TCard () method for HTML help, but it only works in the compiled help (.chm), and I would like to do it as simple html that can be viewed in non-IE browsers.
Is it possible? If so, what would be the easiest / best way to do this?
a source to share
If you're only doing this on Windows, you might want to take a look at the Custom Application Protocol . The page can link to "myhelp3000: LoadStage (2)" and your application can do something special in response.
a source to share
You can use asp.net ajax web services. Here's a tutorial:
http://www.asp.net/Ajax/Documentation/Live/tutorials/ASPNETAJAXWebServicesTutorials.aspx
a source to share