I have a basic app service that creates a title. When my clientside page passes the parameter values to my server side function with special characters, question marks are appearing.
May I ask how do I fix this?
My current code.
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
}