ASP.NET 分割字串

摘要:ASP.NET 分割字串

 int bx = FileUpload1.FileName.LastIndexOf(".");

 string file_type = FileUpload1.FileName.Substring(bx + 1);