Ejemplo n.º 1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                DirectoryInfo imagename = new DirectoryInfo(Server.MapPath("~/pictures/"));

                Picture1.DataSource = imagename.GetFiles("*.*");
                Picture1.DataBind();
            }
        }