I currently have a little form with a silverlight bit for a person to sign their name and I was wondering if there was a way to have the submit button post to the controller and a silverlight code behind action… I tried adding a dom event to fire silverlight code but I guess that doesn’t fire both events…
Any ideas?
You can have Silverlight make calls back out to the DOM:
Calling Javascript functions from Silverlight (Example is Silverlight 2)
Using that method, you can have your Silverlight app complete its logic and then call back in to the page to complete the page postback logic.