我有以下JS代码。
var thisItem = document.thisItem;
var e-mail = thisItem.getProperty("email");// which gets the e-mail of the User
我有以下 C# 代码。
public static void Main()
{
string username = "username";
string email = "";
//code to send a mail to the user
}
在 JS 代码中,我使用 applyMethod("CSProgramName"); 从客户端运行 C#。在这里,我想在 C# 代码中使用 Javascript 的“电子邮件”变量。我怎样才能做到这一点?