私の問題は単純です。aspx ページから、Sharepoint に保存されているドキュメントを新しいウィンドウで開く必要があります。
SharePoint でドキュメントにアクセスするには、資格情報を提供する必要があります。
ドキュメントを新しいウィンドウで開くには、javascript を使用する必要があります。
=> 2 つをリンクする方法は? コードは次のとおりです。
ClientContext ctx = new ClientContext(strServerUrl);
Web currentWeb = ctx.Web;
ctx.Load(currentWeb);
ctx.Credentials = new System.Net.NetworkCredential("Login", "Password", "Domain");
ctx.ExecuteQuery();
// Here I have access to SharePoint.
// I can download the document, but I just want to display it in a new window
// something is missing here
string strScript;
strScript = "window.open('" + myUrltotheDocument + "','','width=800,height=800,resizable=yes,scrollbars=yes');";
ScriptManager.RegisterStartupScript(myPanel, myPanel.GetType(), "ShowInfo", strScript, true);
ご協力ありがとうございました。