使用Adomd Cellset填充Gridview

时间:2014-03-24 14:10:22

标签: asp.net vb.net gridview ssas adomd.net

如何在网格视图中显示SSAS多维数据集ADOMD单元集?

这是我当前的代码,但它将所有3列合并为一列

e.g。

而不是显示

col1    col2
1         a
2         b
3         c

正在显示

formatted text
1
a
2
b
3
c

我该如何纠正?这是我的代码:             OLAPCellset = OLAPCMD.ExecuteCellSet()

        grd1.AutoGenerateColumns = True
        grd1.DataSource = OLAPCellset.Cells
        grd1.DataBind()

0 个答案:

没有答案