how to connect to exchange 2003 server
I have been trying to connect ot exchange 2003 server to extract emails messages in the inbox .
whats wrong with the connection string to connect to exchange 2003 server::::
string myConnString="Provider=EXOLEDB;DATA SOURCE= file://.backofficestorage/server/MBX/Administrator;Connect Timeout=30;"
OleDbConnection myConnection=new OleDbConnection(myConnString);
myConnection.Open()
myConnection.Close()
}
|