且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在asp.net中将图像从一个页面传输到另一个页面?

更新时间:2023-01-08 12:28:36

我想这会在这里运作良好..



i think this will work fine here..

// stroing value
 Session["img"] = Image1.ImageUrl;
        Response.Redirect("Default3.aspx")
// calling image
if (Session["img"] != null)
        {
            Image1.ImageUrl =Session["img"].ToString();
        }





请告诉我是否错了



please do tell if its wrong