2014-04-02 39 views
0

我有一個單獨的列包含多個URL的「,」單獨我想要得到這些URL正確和顯示在我的聊天室頁面查詢滑塊。從Db Column獲取數據並使其正確URl?

柱詳細像 「ID」, 「網址」 1,www.abc.com/abc.jpg的,wwww.bcd.com/ced.jpeg, 大量圖像URL`s在一個單獨列的值。

需要你Suggetions

+1

得到使用列值和分裂「」並訪問 –

+4

的String [] URL = urldatabasecolumn.Split(「」); – user3217843

+0

謝謝你們,我已經完成了首先分割我的數組,然後做出適當的URL ..謝謝你...爲你的善良反饋。 – ebbicsku

回答

0
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之後,我通過這個功能來下載圖像。

謝謝大家我用下面的代碼這樣做...