在asp.net 4.0中上传后加载图像

发布于 2024-12-06 02:04:22 字数 1281 浏览 1 评论 0原文

我的问题是图像上传,上传和图像加载方法工作正常,但我在上传控件下方显示图像,单击上传按钮后必须将新图像添加到行中..原因是什么?

这是上传代码:

            DirectoryInfo directoryInfo = new DirectoryInfo(Server.MapPath(@"~/Bailiffs/BailiffImages/"));
            string cukurNumber = txtCukurNumber.Text;
            int sequence = 0;
            string fileName = string.Empty;
            FileInfo[] fileInfos = directoryInfo.GetFiles(cukurNumber + "*");
            if (afuImage.HasFile)
            {
                if (fileInfos.Length != 0)
                {
                    for (int i = 0; i < fileInfos.Length; i++)
                    {
                        string fileNumber = fileInfos[i].Name.Substring(fileInfos[i].Name.LastIndexOf("-") + 1, fileInfos[i].Name.LastIndexOf(".") - fileInfos[i].Name.LastIndexOf("-") - 1);
                        sequence = int.Parse(fileNumber) + 1;
                    }
                    fileName = cukurNumber + "--" + sequence + ".jpg";
                }
                else
                {
                    fileName = cukurNumber + "--1.jpg";
                }
                afuImage.PostedFile.SaveAs(Server.MapPath(@"/Bailiffs/BailiffImages/" + fileName));
                CreateImages(); // recreates images
            }

thx...

My question is image uploading , uploading and image load method are working perfect but im showing images below the upload control, after click upload button new image must be added to line.. what is the reason?

this is uploading code:

            DirectoryInfo directoryInfo = new DirectoryInfo(Server.MapPath(@"~/Bailiffs/BailiffImages/"));
            string cukurNumber = txtCukurNumber.Text;
            int sequence = 0;
            string fileName = string.Empty;
            FileInfo[] fileInfos = directoryInfo.GetFiles(cukurNumber + "*");
            if (afuImage.HasFile)
            {
                if (fileInfos.Length != 0)
                {
                    for (int i = 0; i < fileInfos.Length; i++)
                    {
                        string fileNumber = fileInfos[i].Name.Substring(fileInfos[i].Name.LastIndexOf("-") + 1, fileInfos[i].Name.LastIndexOf(".") - fileInfos[i].Name.LastIndexOf("-") - 1);
                        sequence = int.Parse(fileNumber) + 1;
                    }
                    fileName = cukurNumber + "--" + sequence + ".jpg";
                }
                else
                {
                    fileName = cukurNumber + "--1.jpg";
                }
                afuImage.PostedFile.SaveAs(Server.MapPath(@"/Bailiffs/BailiffImages/" + fileName));
                CreateImages(); // recreates images
            }

thx...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我的奇迹 2024-12-13 02:04:22

使用 ajax 调用页面方法,该方法检索刚刚上传的图像的 url 并将其显示在 img 标签中。 Ajax 和 Jquery 是您的工具和朋友。

Use ajax to call a page method which retrieves the url of the image just uploaded and shows it in an img tag. Ajax and Jquery are your tools and friends.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文