Asp.net userdefined fields

  • Thread starter Thread starter Fredrick A. Zilz
  • Start date Start date
F

Fredrick A. Zilz

Could someone point me in the right direction.

I have a public folder with custom forms and userdefined fields. I
currently, use a table view with the udf's I am interested in, Select all,
copy to excel, from excel, I create reports based on this data.

I want to change to an asp.net web page that grabs the data directly. I am
not sure how best to accomplish this. If someone could point me to some
examples that might be similar, I'ld appreciate it.
 
Use ExOLEDB to run a query on the public folder.

Ideally (the way I do it!) this involves having SQL Server or MSDE
running on the Exchange server.

- Create a link to Exchange in SQL Server
- Create a SQL view onto your public folder
- Run whatever queries you want on the view

There are a lot of assumptions here, but it comes down to ExOLEDB, which
is available even if you don't have SQL, or can't have it running on the
Exchange Server.
 
What do I need to install from Exchange 2003 cd on my visual studio
development computer in order to be able to create .net apps using exoledb?

Currently I don't have SQL or MSDE on my exchange server, it is on a
seperate server. I don't know the negative impact of running MSDE on my
Exchange 2003 server - will look into this. Thank you for this
information.
 
Back
Top