I am facing an issue with my basic app service that generates a title. The problem arises when special characters are passed from the client-side page to the server-side function, resulting in question marks being displayed.
Is there a way to resolve this issue?
This is my current code snippet:
index.js
var title = "Búsq"
titleService.CreateTitle(title).success(function (data) {
vm.title= data;
});
TitleAppService.cs
public string CreateTitle(string title)
{
// The received title here appears as Bsq <- I need it to display as Búsq
}