2009年5月21日

我于2009年4月26日在贤贤网(贤智创富资产管理顾问(北京)有限公司)订下机票(2009年5月10日  厦门  -  北京),金额总计¥758.0元,包括机票+保险+10元快递费


订票成功后,因为其中涉及机票快递流程不清楚曾交涉过该网站客服,当时的答复是机票不负责送至客户,只是随其产生的保险单快递至客户,后来我的确通过该航班航空公司查询到机票已订成功,就暂时未曾催促贤贤网快递保险单


在2009年4月26日到2009年5月14日期间,没有该网站任何一位客服与我联系关于保险单和快递之事
2009年5月14日下午3:46,我又打通贤贤网客服电话,催促其快递保险单,客服的说法尽快帮我催促相关人员,(很抱歉,我不知道他们所谓的相关人员指何人),到今天为止,2009年5月15日我还未收到任何他们的电话以及保险单


我严重怀疑该公司利用客户在其网站订机票的机会,私吞客户的快递费以及保险单费用(虽然该费用不是很多,但一旦发生次数很多,也是一笔很大的金额),因此要求该公司给我一个合理的解释,并退回我的快递费和保险单费用,谢谢

另外还有其他真实案例,我两同事是天津人,经常需要乘坐北京至天津的城际列车,也在这家网站订火车票,去年有一次,要了我同事一人10块钱买车票手续费,说是买好之后给寄到公司来,结果到后来的结果是要我同事俩自己去北京南站去找该公司工作人员取票…

帖子地址:http://www.315ts.net/archive/tousu/2009/0515/377167.shtml

----------------后续分割线--------------------

5月19日下午6点多,我接到贤贤网工作人员电话,一开始态度还是很差,质问我是不是在315网站投诉过该公司,然后又说保险单号可以在保险公司网站查询到云云,总之就是以我不太清楚保险单兑现流程之理由向我非难,我反驳她我连保险单长啥样都没见到过,而且此时她个人的说辞与我最初联系他们时完全不一样,然后该工作人员才哑口无言,最后才说保险单已于下午寄出.... 

结果等到5月20日下午我才从公司前台取到快递,拿到快递后第一件事,便是按照保险单上的单号查询保单是否有效,结果被保险公司询问一大堆细节之后,告诉我的结果是无法查到该保险单信息…

还有,我拿到的快递单上清楚地写着快递费:5元…

----------------分割线结束---------------------

 

强烈推荐园友出行买机票啥的,要么就去柜台买,要么就去航空公司官方网站订,千万别去这种第三方垃圾公司买,更不要去贤贤网订…

 

类似投诉帖子:

http://www.ts12315.cn/article/4b/386.html

http://www.315ts.net/archive/tousu/2009/0211/305652.shtml

http://www.tianya.cn/publicforum/content/free/1/1484455.shtml

http://zhidao.baidu.com/question/94339736.html

http://www.dianping.com/shop/2987683/all

posted @ 2009-05-21 21:58 micYng 阅读(286) | 评论 (0)编辑

2008年8月15日

     摘要: 怎样解决FileSystemWatcher多次触发问题?  阅读全文
posted @ 2008-08-15 19:36 micYng 阅读(1531) | 评论 (1)编辑

2008年7月22日

     摘要: 局域网内文件同步的玩具  阅读全文
posted @ 2008-07-22 17:45 micYng 阅读(2534) | 评论 (8)编辑

2008年7月11日

     摘要: 用c#实现自动拨号  阅读全文
posted @ 2008-07-11 17:47 micYng 阅读(1565) | 评论 (2)编辑

2008年7月10日

   1: class EnumLocalCollection
   2: {
   3:     private List<LocalCollectionInfo> _infos;
   4:  
   5:     public EnumLocalCollection()
   6:     {
   7:         _infos = new List<LocalCollectionInfo>();
   8:     }
   9:  
  10:     private string InvokeCmd()
  11:     {
  12:         Process p = new Process();
  13:         p.StartInfo.FileName = "cmd.exe";
  14:         p.StartInfo.UseShellExecute = false;
  15:         p.StartInfo.RedirectStandardInput = true;
  16:         p.StartInfo.RedirectStandardOutput = true;
  17:         p.StartInfo.RedirectStandardError = true;
  18:         p.StartInfo.CreateNoWindow = true;
  19:         p.Start();
  20:  
  21:         p.StandardInput.WriteLine("ipconfig");
  22:         p.StandardInput.WriteLine("exit");
  23:  
  24:         return p.StandardOutput.ReadToEnd();
  25:     }
  26:  
  27:     public bool Parse()
  28:     {
  29:         string input = InvokeCmd();
  30:  
  31:         var convert = new Func<MatchCollection, int, List<string>>(Converts);
  32:         List<string> names = convert.Invoke(Regex.Matches(input, @"(?:PPP|Ethernet) adapter (.*):"), 1);
  33:         List<string> ips = convert.Invoke(Regex.Matches(input, @"IPv??4?? Address.*:\s(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})"), 1);
  34:  
  35:         if (names.Count != ips.Count)
  36:             return false;
  37:  
  38:         for (int i = 0; i < names.Count; i++)
  39:         {
  40:             _infos.Add(new LocalCollectionInfo() { Name = names[i], IP = ips[i] });
  41:         }
  42:  
  43:         return true;
  44:     }
  45:  
  46:     public ReadOnlyCollection<LocalCollectionInfo> LocalCollectionInfos
  47:     {
  48:         get { return this._infos.AsReadOnly(); }
  49:     }
  50:  
  51:     private List<string> Converts(MatchCollection mcs, int group)
  52:     {
  53:         List<string> rts = new List<string>();
  54:         for (int i = 0; i < mcs.Count; i++)
  55:             rts.Add(mcs[i].Groups[group].Value);
  56:         return rts;
  57:     }
  58: }
  59:  
  60: class LocalCollectionInfo
  61: {
  62:     public string Name { get; set; }
  63:     public string IP { get; set; }
  64:  
  65:     public override string ToString()
  66:     {
  67:         return string.Format("{0}-{1}", Name, IP);
  68:     }
  69: }

用的时候这样用:

   1: EnumLocalCollection lc = new EnumLocalCollection();
   2: if (!lc.Parse())
   3: {
   4:     Console.WriteLine("error");
   5:     return;
   6: }
   7: ReadOnlyCollection<LocalCollectionInfo> infos = lc.LocalCollectionInfos;
   8: for (int i = 0; i < infos.Count; i++)
   9: {
  10:     Console.WriteLine(infos[i].ToString());
  11: }
posted @ 2008-07-10 18:15 micYng 阅读(949) | 评论 (0)编辑

2008年7月7日

     摘要:   阅读全文
posted @ 2008-07-07 15:58 micYng 阅读(753) | 评论 (0)编辑

2008年6月28日

If no encoder exists for the file format of the image, the Portable Network Graphics (PNG) encoder is used. When you use the Save method to save a graphic image as a Windows Metafile Format (WMF) or Enhanced Metafile Format (EMF) file, the resulting file is saved as a Portable Network Graphics (PNG) file. This behavior occurs because the GDI+ component of the .NET Framework does not have an encoder that you can use to save files as .wmf or .emf files.

唉,可怜偶滴一世清誉Sad

posted @ 2008-06-28 19:20 micYng 阅读(191) | 评论 (0)编辑

2008年6月25日

     摘要: 仅仅依据代码,结合msdn,谈经验,基础知识自行msdn or google,ok,let's go 先看一段最简单的 1: using System; 2: using System.C  阅读全文
posted @ 2008-06-25 19:52 micYng 阅读(1310) | 评论 (4)编辑

2008年6月19日

真™服了,把自己该搞定的技术问题转嫁到用户身上,vista明明提供了更加安全的机制,却被迫要关闭UAC,将IE安全设置改到更低,安装个烂控件之后,要重启n次........... 操蛋!Angry

招商的网银就很简单,中信你好好反思一下吧

实在忍无可忍了....

posted @ 2008-06-19 16:09 micYng 阅读(415) | 评论 (2)编辑

2008年5月29日

     摘要: 摘抄一段m$的kb The WinSock listen() call backlog parameter under Windows NT version 3.5 and 3.51 accepts  阅读全文
posted @ 2008-05-29 16:02 micYng 阅读(210) | 评论 (0)编辑

导航

公告

垃圾Comment,Spam杀无赦!

<2009年7月>
2829301234
567891011
12131415161718
19202122232425
2627282930311
2345678

统计

与我联系

搜索

 

常用链接

留言簿

我参与的团队

我的标签

随笔分类

随笔档案

文章分类

相册

收藏夹

.Net Enterprise Library

.Net Remoting

ASP.NET

Blog Friends:)

C# category

C# forum&blogs

C# Toolkit

CodeSmith Usages

cPP related

Design Pattern

Opensource project

Pervious Blog

Useful tip

积分与排名

最新评论

阅读排行榜

评论排行榜