javascript - VB and Angular working toghether -
i'm working on project i'm making file editor. frontend love have in angular.
so i've setup angular project loaded when going webform aspx page.
but need load in document. happens via library , vb code (for authentication , on). , can see need pass data between javascript , vb side couple of times (like when users presses save , on).
right vb part builds hughe html string , does:
content.binary = system.text.encoding.default.getbytes(html) context.response.binarywrite(content.binary) context.response.flush() context.response.end()
but think there more efficient way send data between two.
i've found this: http://www.codeproject.com/articles/35373/vb-net-c-and-javascript-communication using webbrowser, , doesn't seem work on system.web.ui.page
Comments
Post a Comment