Showing posts with label build. Show all posts
Showing posts with label build. Show all posts

Wednesday, March 7, 2012

Displaying AS hierarchy in ASP.Net

Hi,

I'm currently working on a project where we're building a custom UI , pretty soon, we're going to have to build in the ability to browse an AS hierarchy. We would like to use a traditional treeview control or similar. I know this is comig down the line so I'm trying to pre-empt any problems we might have by trying to sort them ahead of time before I go on vacation (which is tomorrow - yeay :) ).

Does anyone know of any technical resources/whitepapers/etc... that may help us in doing this? Any sample code? Any issues to be aware of

Any information would be greatly received.

Thanks

Jamie

Hello Jamie.

You want to use ADOMD.NET to access multidimensional data. You can download it from:

http://www.microsoft.com/downloads/details.aspx?FamilyID=790d631b-bff9-4f4a-b648-e9209e6ac8ad&DisplayLang=en

There is a very good sample app there, and you can see how they build treeviews to display dimensional information. OK, it is a windows forms app, but it shouldn't be too difficult to apply the same concepts to an ASP.NET 2.0 Treeview control.

Hope this help,

Santi

|||

It helps alot. Thank you Santi!

-Jamie

Sunday, February 19, 2012

display programatically images,text in a page

hi everyone.
i want to build a page that all datas,images will store in sql server.
i want to display images,text from database in a page with a template (images left of the page,text near the image and like...,programatically)
there will be very much data . about 500-1000 pages data.
is this possible with sql server?
can SQL server store big datas?
if it is possible can you give me an idea.Yes, it is entirely possible. The method I use on my personal website does not store the image in the db, just the URL to the image. However, it is possible to store binary data in sql. Do a search on google.com and you will find all kinds of tutorials.