摘要:
IVR语音菜单需要动态生成,找了一圈的资料,终于被自己试出来。第一步:修改xml_curl.conf 第二步:Ivr.ashx编码 public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; context.Response.Write(OutPut()); } public bool IsReusable { get { return false; } ... 阅读全文