Is it possible to call a C# function which is inside a specific class file by javascript?
My Function is like this
public static void PrintPDF()
{
}
and this function is inside a class file XSLTHelper
In C# I can call this function by XSLTHelper.PrintPDF();
.
Is there is any way to do the same from javascript?