从 Db 列中获取数据并使其成为正确的 URl

本文关键字:URl Db 获取 数据 | 更新日期: 2023-09-27 17:55:58

我有一列包含多个 URL","分开我想让这些 URL 正确并在我的 asp.net 页面中的 J 查询滑块中显示。

列详细信息,如"ID"、"网址" 1 ,www.abc.com/abc.jpg, wwww.bcd.com/ced.jpeg,一个单列值中的大量图像 URL。

需要你的建议

从 Db 列中获取数据并使其成为正确的 URl

string sPhotoURL = Convert.ToString(dt.Rows[0]["PHOTO_LOCATIONColumnName"]);
string[] words = sPhotoURL.Split(',');
int count = 0;
hdnImageCount.Value = words.Length.ToString();
foreach (string word in words)
{
    if (word.Length > 50)
    {
        count += 1;
        String correctURl = word.Substring(45);
        string photoNumber = correctURl.Substring(1, 2);
        correctURl = "http://" + "images-+photoNumber+urlsomething/something/"+correctURl;
        string url = correctURl;
    }
}

这将使我的URl正确,然后我将其传递给下载图像的功能。

谢谢大家,我通过以下代码完成了此操作...