I used early binding with gridview to show Urls Text and its HRef as a key value, and it works like a charm. But since I want to replace the dictionary with the following: dictionary<string, string>
dictionary<string, LinkInfo>
binding goes wrong! Should I handle some events like onItemDataBound or something else? and LinkInfo structure :
public struct LinkInfo{
public string href;
public bool Enabled;
}
Mehdi source
share