Today, when I call WebService when I call WebService, I want to pass the name as a parameter to WebService but I have become the WebService.htc Chinese characters.
solve:
First use the Chinese characters you want to pass on Encodeuri
Function getCallDetails () {
iCallID = service.svcWeather.callService (showCallDetails, "GetCallDetails", encodeURI (document.Form1.TB_ClientName.value), document.Form1.TB_ClientPhone.value, document.Form1.TB_IDCard.value)
}
Then use in the WebService program
m_clientname = system.Web.httpContext.current.server.urldecode (m_clientname);
Decode