reading mails from exchange 2003
whats wrong with the connection string to connect to exchange 2003 server::::
<%@ Page Language="C#" Debug="true" %>
<%@ import Namespace="System.Data" %>
<%@ import Namespace="System.Data.OleDb" %>
<script runat="server">
void Page_Load()
string myConnString="Provider=EXOLEDB;DATA SOURCE= file://.backofficestorage/server/MBX/Administrator;Connect Timeout=30;";
OleDbConnection myConnection=new OleDbConnection(myConnString);
myConnection.Open();
myConnection.Close();
}
</script>
|