Les pongo el codigo a continuacion.:)
Código ASP:
Ver original
[CODE]private void eliminar() { string sql = "SELECT foto,fotoslide FROM cat_noticias where idnoticia=" + Request["id"].ToString(); System.Data.SqlClient.SqlConnection cn = new System.Data.SqlClient.SqlConnection(@"Data Source=xxx;Initial Catalog=notaria;User Id=xxx;Password=xxx;"); cn.Open(); System.Data.SqlClient.SqlCommand com = new System.Data.SqlClient.SqlCommand(sql, cn); SqlDataReader datos = com.ExecuteReader(); datos.Read(); string foto, foto2,ruta1,ruta2; foto = datos["foto"].ToString(); foto2 = datos["fotoslide"].ToString(); ruta1 = "./images/notarios/" + foto; ruta2 = "./images/notarios/" + foto2; manbasedatos obj = new manbasedatos(); string sql2 = "DELETE FROM cat_noticias where idnoticia=" + Request["id"].ToString(); obj.ejecutar(sql2); File.Delete(ruta1); File.Delete(ruta2); Response.Redirect("consultanoticias.aspx"); }[/CODE]