B
bhavin
I want to return an integer value from javascript to my .net code.
My javascript returns is :
function getIndex() {
----
----
return (currentIndex);
}
My C# code is:
htmlwindow2class newWindow;
newWindow.execScript("getIndex()", "javascript");
I want my C# code to accept the parameter "currentIndex" returned from
javascript. Any help.? Thanx in advance.
My javascript returns is :
function getIndex() {
----
----
return (currentIndex);
}
My C# code is:
htmlwindow2class newWindow;
newWindow.execScript("getIndex()", "javascript");
I want my C# code to accept the parameter "currentIndex" returned from
javascript. Any help.? Thanx in advance.