I need some help, I've been trying to implement invoking a C# method from client side, I already got a result in a solution environment but when I try to migrate to another namespace it just does nothing.
I hope you can help me.
Maybe it could refer to something related to the configuration of my solution but I don´t know what else to do.
Here is my code:
<html xmlns="http://www.w3.org/1999/xhtml">
C# code:
[WebMethod]
public static void ejecutar()
{
string n = "success"
}
