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:
htmlwindow2clas s newWindow;
newWindow.execS cript("getIndex ()", "javascript ");
I want my C# code to accept the parameter "currentInd ex" returned from
javascript. Any help.? Thanx in advance.
My javascript returns is :
function getIndex() {
----
----
return (currentIndex);
}
My C# code is:
htmlwindow2clas s newWindow;
newWindow.execS cript("getIndex ()", "javascript ");
I want my C# code to accept the parameter "currentInd ex" returned from
javascript. Any help.? Thanx in advance.
Comment