How can I do a call back to the code behind method using javascript (properly)?
问题 So I am trying to call back to a code behind method using Javascript and it seems like the only way to do so is using the Page.ClientScript.RegisterClientScriptBlock() Method. I don't need to return any data back to the calling javascript function. This isn't a web service, so I am not going to use a ajax call, but this seems like there would be an easier way to do this than Client Callbacks Programmatically with Page.ClientScript..... 回答1: Page.ClientScript.RegisterClientScriptBlock() is