This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace CodedHomes.Data | |
{ | |
public interface IRepository<T> where T : class | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//------------------------------ concatenar en el eval | |
<asp:Image ID="Image1" runat="server" ImageUrl='<%# "~/styles/images/" + Eval("value") + ".png"%>' | |
ToolTip='<%# Convert.ToDateTime(Eval("value")).ToString("dddd d, MMMM yyyy -- HH:mm:ss") %>' /> | |
ImageUrl='<%# "~/fixed/showimage.aspx?img=" + Eval("im_image")%>' | |
ImageUrl='<%# Eval("im_image","~/fixed/showimage.aspx?img={0}")%>' | |
//----------------------------------- para dormir el proceso | |
Thread.Sleep(300); //en milisegundos |
NewerOlder