public string listaFotos(int nPE) { //this.rptOpciones.DataSource = FOTOSEGPE.Catalogo(null, null, null, nPE, null, 2, 1); //this.rptOpciones.DataBind(); try { StringBuilder sb = new StringBuilder(); SqlDataReader dr = null; sb.Append("<table id='tblOpciones' class='texto MA' style='width:500px;'>"); sb.Append("<colgroup><col style='width:120px;' /><col style='width:280px;' /><col style='width:100px;' /></colgroup>"); sb.Append("<tbody>"); dr = FOTOSEGPE.Catalogo(null, null, null, nPE, null, 2, 1); while (dr.Read()) { sb.Append("<tr id='" + dr["T373_idFotoPE"].ToString() + "' "); sb.Append("usuario='" + dr["t314_idusuario"].ToString() + "' onclick='ms(this)' "); sb.Append(" ondblclick='aceptarClick(this.rowIndex)' "); sb.Append(" style='height:16px;'>"); sb.Append("<td style='padding-left:3px;'>" + dr["T373_fecha"].ToString() + "</td>"); sb.Append("<td><nobr class='NBR W280'>" + dr["Autor"].ToString() + "</nobr></td>"); sb.Append("<td style='text-align:right; padding-right:5px;'>" + dr["fecIAP"].ToString() + "</td></tr>"); } dr.Close(); dr.Dispose(); sb.Append("</tbody>"); sb.Append("</table>"); return(sb.ToString()); } catch (Exception ex) { return("Error@#@" + Errores.mostrarError("Error al obtener las instantáneas", ex)); } }
protected string eliminarFoto(string sIDFotoPE) { string sResul = ""; try { int nResul = FOTOSEGPE.Delete(null, int.Parse(sIDFotoPE)); sResul = "OK"; } catch (Exception ex) { sResul = "Error@#@" + Errores.mostrarError("Error al eliminar la foto de proyecto económico", ex); } return(sResul); }