string str = "a.b.doc";int index = str.LastIndexOf('.');string s = str.Substring(0, index);Response.Write(s);要注意此处要拿到最后一个'.'符号的索引,而不是直接IndexOf('.'),因为有些文件可以在文件名中加入'.'符号。