我有一个创建标题的基本应用程序服务。当我的客户端页面使用特殊字符将参数值传递给服务器端函数时,出现问号。
请问该如何解决?
我当前的代码。
index.js
var title = "Búsq"
titleService.CreateTitle(title).success(function (data) {
vm.title= data;
});
TitleAppService.cs
public string CreateTitle(string title)
{
// title is received here as B�sq <- how do I resolve this, it should be Búsq
}