admin管理员组文章数量:1350927
firstly i have searched a lot and all topics seems to be C# : call or invoke a JavaScript function but i want to do the opposite , i want to create a function on C# and also on JavaScript and i want the JavaScript function call the C# function and retrieve it`s data , it seems like a good questions . The problem is that i have no knowledge on web and i do not know how does it work , but i tried a sample :
Created a class :
public interface IFoo
{
string Bar { get; set; }
}
public class Foo : IFoo
{
public string Bar { get; set; }
}
Then
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public IFoo CreateFoo()
{
return new Foo() { Bar = "somevalue" };
}
public string Bar(IFoo foo)
{
return foo.Bar;
}
}
And Javascript Code :
<script type="text/javascript" language="javascript" >
function Callme(){
alert('Js function start . keep pressing OK')
var foo = external.CreateFoo();
alert(foo.Bar);
foo.Bar = "qwer";
alert(external.Bar(foo));
}
</script>
I get Error from the webbrowser control :
Error : "external" is null or not an object
But the javascript is not showing anything , please guide me if i missed something.
firstly i have searched a lot and all topics seems to be C# : call or invoke a JavaScript function but i want to do the opposite , i want to create a function on C# and also on JavaScript and i want the JavaScript function call the C# function and retrieve it`s data , it seems like a good questions . The problem is that i have no knowledge on web and i do not know how does it work , but i tried a sample :
Created a class :
public interface IFoo
{
string Bar { get; set; }
}
public class Foo : IFoo
{
public string Bar { get; set; }
}
Then
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public IFoo CreateFoo()
{
return new Foo() { Bar = "somevalue" };
}
public string Bar(IFoo foo)
{
return foo.Bar;
}
}
And Javascript Code :
<script type="text/javascript" language="javascript" >
function Callme(){
alert('Js function start . keep pressing OK')
var foo = external.CreateFoo();
alert(foo.Bar);
foo.Bar = "qwer";
alert(external.Bar(foo));
}
</script>
I get Error from the webbrowser control :
Error : "external" is null or not an object
But the javascript is not showing anything , please guide me if i missed something.
Share Improve this question asked Mar 27, 2012 at 9:04 R.VectorR.Vector 1,7199 gold badges33 silver badges41 bronze badges 2- 2 +1 to this question to offset -1 : I do not think that the question should get downvote only because the OP does not know about how particular technology/protocol/framework works. – Michael Commented Mar 27, 2012 at 9:15
- 1 I downvoted not for his ignorance, but for his ambiguous question. – Kevin Wang Commented Mar 27, 2012 at 9:18
6 Answers
Reset to default 7Hold on guys. PAUSE. All of you need to slow down and read. As this guy said:
I get Error from the webbrowser control :
Meaning he is embedding a webbrowser control that opens up this page which runs javascript.
To clear this up, I think he means that:
- This is not online.
- He has a webBrowserControl in his C# application that opens up a page to run this javascript.
- In his app, he wants to use javascript to call a C# method from a class in his app.
Now, I agree that he was a bit ambiguous (hint, please be clearer with your question next time), but you guys are all posting answers and getting ahead of yourself. In fact what he is describing is indeed possible, and this is how you do it.
Now the object you wanna reference in your javascript is window.external. Here is an example in your javascript:
window.external.CreateFoo();
to call CreateFoo(). However, before you can do so, you have to make your class visible to the page that your webbrowser is opening (window.external being the instanced class that you're referencing).
So, to set window.external, when you're creating webBrowser in C#:
webBrowser1.ObjectForScripting = this;
So to sum it up:
- In your C# app, set ObjectForScripting of your web browser control to whatever object you want to reference in Javascript.
- In the Javascript on your page, you can call
window.external.YOURMETHOD();
to call any public method from that ObjectForScripting class that you set originally.
I hope this helps your situation and others will be a bit more careful when reading your question.
EDIT: Also as a reminder, the webBrowserControl depends on the version on IE that the user has installed on his/her puter. So be careful on versioning, javascript will only perform to the extent of what his/her version of IE can handle (same goes for styling and etc.)
Edit Edit: You also need to add the ComVisible attribute [ComVisible(true)]
there is some misunderstood here.
Javascript can't call server function.
Use Ajax for that.
The only way we can think about that is in a framework like GWT, but be careful : GWT pile your java code in javascript which calls via ajax the server.
The thing to have in memory is that if a framework propose you to call a C# or java method directly in javascript, it does not really perform that : it calls a server resource using ajax and then the server resource call the method. The method returns and the ajax response is sent to javascript.
You should really look into how HTTP works and then re-evaluate your question.
You simply can't call a C# function directly from JavaScript because your JavaScript is executed on the client by the browser while the C# is run on the server by the Web server.
If you want to call a function on the server you need to do that through a AJAX request using some kind of Web library like ASP.NET WebAPI or ASP.NET MVC.
To explain Jerome C's answer slightly further.
C# is a server-side language which is executed by a server request. Whereas JavaScript is client-side language, meaning it is handled by the browser. Both have their advantages, and both are monly used for the same thing, such as validation. The server-side language is a secure way of ensuring something, or executing a mand between a database for example. Whereas the client-side language (JavaScript), is more monly used to improve the user experience but making things more interactive.
As people have suggested, there are ways to municate between the two, but not "directly". The key word here is AJAX. Using an open source library such as jQuery http://jquery./ on the client-side, and then a custom handler (.ASHX file) on the server-side, you can make asynchronous requests between the client and the server.
On a slightly more advanced note; you can directly municate between JavaScript and C# objects using a library such as SignalR https://github./SignalR/SignalR it's a tiny bit fiddly to setup, so I wouldn't remend it for this instance, but it would definitely be something to consider in the future.
You can't call server function by Javascript directly.
If you need , you can use the __doPostBack("Button1","")
instead.
Put your action in the Button1's event.
Javascript and serverside languages cannot directly talk to each other.
The most mon (I think) way to do this is using some sort of Ajax call a serverside Web Service:
This means you make a special call in javascript that will reach to a class method written in C#.
Before reading about and making Ajax calls, you should read up on HTTP protocol and how munication between web server and browsers is executed. I think the article in this link is a good place to start reading about HTTP.
You can read about WebServices Web Services related Wiki article, and about Ajax in Ajax wiki Article.
Also :
- Ajax calls do not have to be written by hand, javascript frameworks like jQuery can be used. (in jQuery a function like jQuery.$ajax() is very usefull in making ajax calls )
- There is an alternative way to do this - you can use a page method.
本文标签: Javascriptcall a C functionStack Overflow
版权声明:本文标题:Javascript : call a C# function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743885958a2556060.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论