I have C# code in which I have embedded javascript code. The CalculateSalary() method is defined in the C# code. But when I try to call it from the javascript code, an error is returned.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||||||
|
closed as not a real question by sharmila, Gabe, Jeremy, Ravi, DCoder Aug 8 '12 at 4:42
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Wow man, this is so wrong. Your c# code will run in another context (server, service, etc..) and javascript will run on browser context. You cannot call a method written in your server directly from javascript. You need a comunication layer like ajax or write your CalculateSalary in javascript so it can run on client machine (browser). |
|||||
|
|
|
One mistake is the <"> this hsould be replaced with <'> inside the script near javascript:
|
|||
|
|