Interaction between JavaScript and. NET Applications-experiment 1

Source: Internet
Author: User

Interaction between JavaScript and. NET Applications-experiment 1
 
C # Call JavaScript Functions

By integrating JavaScript with. NET, you can enhance the flexibility of. NET applications. The following are several examples to help you learn and exchange.

Currently, there are many JavaScript Engines, including Google Chrome V8, Noesis. Javascript, and Jurassic. ScriptEngine. Result testing is more convenient than Jurassic. ScriptEngine.

The following uses Jurassic. ScriptEngine as an example to describe several small examples.

Example 1: Call JavaScript Functions in C #

(1) create a C # Windows Project

(2) reference the Jurassic Database

After the reference is complete

 

 

(3) add two TextBox and one Button on WinForm.

TextBox is used to input JS Code and display JS computing results

Interface Layout

The corresponding code is as follows:

Note:

Var is a weak type object of C #, which is newly added after. NET3.5. For detailed instructions, go to MSDN.

First, load and execute the JS Code (Evaluate) in TextBox1 through the script engine, and then call the global function (CallGlobalFunction) to make C # Call the program already loaded into the JS engine.

 

JS Code:

Function main (a, B)

{

Return a + B;

}

Running Effect (1)

 

JS Code:

Function add (a, B)
{
Return (a + B) * 2;
}

Function main (a, B)
{
Var x = add (a, B );
 
Return x;
}


Running Effect (2)

 

Summary:

By using JavaScript, the flexibility of C # Windows applications can be enhanced. In actual development, some frequently-needed calculation methods can be encapsulated and put into JavaScript scripts.

Author: ex_net

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.